-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "w3c-validator-cli",
"version": "3.3.0",
"description": "Crawls a given site and checks for W3C validity.",
"homepage": "https://github.com/lgraubner/node-w3c-validator-cli",
"author": {
"name": "Lars Graubner",
"email": "[email protected]",
"url": "http://larsgraubner.de"
},
"contributors": {
"name": "Guillaume Kulakowski"
},
"keywords": [
"w3c",
"validator",
"crawler",
"check",
"ecosystem:node"
],
"main": "cli.js",
"repository": {
"type": "git",
"url": "https://github.com/lgraubner/node-w3c-validator-cli.git"
},
"bugs": {
"url": "https://github.com/lgraubner/node-w3c-validator-cli/issues"
},
"dependencies": {
"simplecrawler": "^0.5.4",
"commander": "^2.9.0",
"chalk": "^1.1.1",
"lodash": "^3.10.1",
"cli-spinner": "^0.2.1",
"find-java-home": "^0.1.2",
"url-parse": "^1.0.5"
},
"preferGlobal": true,
"engines": {
"node": ">=0.12"
},
"bin": {
"w3c-validator": "cli.js"
},
"license": "MIT",
"scripts": {
"test": "eslint cli.js lib/** && NODE_ENV=development mocha test"
},
"devDependencies": {
"chai": "^3.4.1",
"del": "^2.1.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.0.0",
"mocha": "^2.3.4"
}
}