-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "third-party-resources-checker",
"version": "1.0.6",
"description": "The Third Party Resources Checker is a tool to detect non-w3.org and non-whitelisted resources in a Web page.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/w3c/third-party-resources-checker.git"
},
"bugs": {
"url": "https://github.com/w3c/third-party-resources-checker/issues"
},
"dependencies": {
"commander": "2.9.0",
"phantomjs-prebuilt": "2.1.16",
"promise": "7.1.1",
"querystring": "0.2.0",
"url": "0.11.0"
},
"devDependencies": {
"coveralls": "2.13.1",
"expect.js": "0.3.1",
"express": "4.15.2",
"istanbul": "0.4.5",
"mocha": "3.3.0"
},
"main": "./lib/third-party-resources-checker.js",
"bin": {
"third-party-resources-checker": "./bin/third-party-resources-checker"
},
"scripts": {
"coverage": "istanbul cover _mocha",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"test": "mocha -c -G"
},
"engines": {
"node": "6 || 8",
"npm": ">=3"
}
}