forked from naugtur/npm-audit-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "npm-audit-resolver",
"version": "2.3.1",
"description": "Aids humans and automation in managing npm audit results",
"bin": {
"resolve-audit": "resolve.js",
"check-audit": "check.js"
},
"main": "index.js",
"scripts": {
"add-vulns": "npm i -D base64url@2.0.0 lodash@2.0.0 dependo@0.2.0",
"rm-vulns": "npm rm -D base64url lodash dependo",
"test-exec": "rm -f audit-resolv.json && ! node check.js && node resolve.js && node check.js",
"testdrive": "npm run add-vulns && rm -f audit-resolve.json && ! node check.js && node resolve.js && node check.js && npm run rm-vulns",
"test": "sh test/e2e/test.sh"
},
"keywords": [
"npm",
"audit",
"security",
"dependencies",
"nsp",
"check",
"resolve"
],
"author": "naugtur <naugtur@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/naugtur/npm-audit-resolver.git"
},
"bugs": {
"url": "https://github.com/naugtur/npm-audit-resolver/issues"
},
"homepage": "https://github.com/naugtur/npm-audit-resolver#readme",
"license": "Apache 2.0",
"dependencies": {
"audit-resolve-core": "^1.1.8",
"chalk": "^2.4.2",
"djv": "^2.1.4",
"jsonlines": "^0.1.1",
"read": "^1.0.7",
"spawn-shell": "^2.1.0",
"yargs-parser": "^18.1.3",
"yargs-unparser": "^1.6.4"
},
"devDependencies": {
"pre-commit": "^1.2.2"
}
}