-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "w3c-link-validator",
"version": "1.0.0",
"description": "Command line tool, identifying broken links, validate basic html standards and reporting",
"main": "./src/w3clink.js",
"scripts": {
"test": "mocha test/index.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "npm run-script coverage && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/99xt/w3c-link-validator.git"
},
"keywords": [
"w3c",
"link",
"validator"
],
"author": "99xt",
"license": "MIT",
"bugs": {
"url": "https://github.com/99xt/w3c-link-validator/issues"
},
"homepage": "https://github.com/99xt/w3c-link-validator#readme",
"dependencies": {
"chalk": "^2.1.0",
"cheerio": "^0.22.0",
"commander": "^2.11.0",
"figures": "^2.0.0",
"request": "^2.81.0"
},
"bin": {
"w3clink": "./bin/w3clink.js"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3"
}
}