-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.16 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
58
{
"name": "npm-audit-ok",
"description": "Exits with exit status 1 if there are critical vulnerabilities reported by npm audit.",
"version": "1.1.0",
"author": "Tim Allen <[email protected]>",
"license": "BSD",
"bin": {
"npm-audit-ok": "./bin/index.js"
},
"scripts": {
"coverage": "c8 npm test",
"pretest": "semistandard --env mocha",
"test": "cd test && npm init -y && npm i && node ../bin/index",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js"
},
"homepage": "https://github.com//npm-audit-ok",
"repository": {
"type": "git",
"url": "git://github.com//npm-audit-ok.git"
},
"bugs": {
"url": "https://github.com//npm-audit-ok/issues"
},
"engines": {
"node": "8.x",
"npm": "5.x"
},
"dependencies": {
"c8": "^7.7.3",
"get-stream": "^4.1.0",
"semistandard": "^16.0.1"
},
"keywords": [
"npm",
"audit",
"security",
"travis",
"CI"
],
"c8": {
"exclude": [
"coverage",
"test"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
},
"semistandard": {
"env": [
"mocha"
]
}
}