forked from andre487/feed-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"author": "Andrey Prokopyuk <[email protected]>",
"name": "feed-validator",
"description": "Simple validator for RSS, Atom or opensearch.xml that using validator.w3.org/feed and plugins",
"version": "1.1.1",
"main": "cli/run.js",
"keywords": [
"validation",
"validator",
"feed",
"RSS",
"Atom",
"OpenSearch",
"opensearch.xml",
"plugins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Andre-487/feed-validator.git"
},
"bugs": {
"url": "https://github.com/Andre-487/feed-validator/issues"
},
"homepage": "https://github.com/Andre-487/feed-validator#readme",
"license": "MIT",
"scripts": {
"test": "cd test && mocha --recursive --reporter spec --require bootstrap.js ."
},
"engines": {
"node": ">= 6.0.0"
},
"bin": {
"feed-validator": "./cli/run.js"
},
"preferGlobal": true,
"dependencies": {
"argparse": "^1.0.2",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"fs-readfile-promise": "^3.0.0",
"lodash": "^4.17.19",
"q": "^1.4.1",
"q-io": "^1.13.1",
"throw": "^1.0.0",
"valid-url": "^1.0.9",
"xml2js": "^0.4.10"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"eslint": "^1.3.0",
"git-hooks": "^1.0.0",
"jscs": "^2.1.1",
"mocha": "^2.2.5",
"sinon": "^1.16.1"
}
}