forked from nodesecurity/nsp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "nsp",
"description": "The Node Security (nodesecurity.io) command line interface",
"version": "2.0.0",
"author": "^lift security",
"bin": {
"nsp": "bin/nsp"
},
"dependencies": {
"requiresafe-npm-utils": "^2.5.3",
"chalk": "^1.1.1",
"cli-table": "^0.3.1",
"https-proxy-agent": "^1.0.0",
"joi": "^6.9.1",
"rc": "^1.1.2",
"semver": "^5.0.3",
"subcommand": "^2.0.3",
"wreck": "^6.3.0"
},
"devDependencies": {
"code": "^1.5.0",
"eslint-config-requiresafe": "^1.0.0",
"git-validate": "^2.1.0",
"lab": "^6.1.0",
"nock": "^2.15.0",
"shrinkydink": "^1.0.0"
},
"keywords": [
"security",
"requiresafe",
"nodesecurity"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nodesecurity/nsp.git"
},
"scripts": {
"setup-offline": "curl -sS https://api.nodesecurity.io/advisories -o advisories.json",
"test": "lab -a code -L -t 100",
"nsp": "bin/nsp check",
"shrinkwrap": "npm shrinkwrap && shrinkydink"
},
"pre-commit": [
"test"
]
}