-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 817 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 817 Bytes
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
{
"name": "security-audit-nodejs",
"version": "0.1.2",
"description": "A collection of security tests for your Node.js project",
"bin": {
"security-audit-nodejs": "./bin/audit.js"
},
"scripts": {
"precommit": "npm run test",
"test": "eslint ."
},
"keywords": [
"node",
"security",
"audit",
"nsp",
"retire",
"retirejs"
],
"author": "Ron Korving <rkorving@moneytree.jp>",
"repository": "github:moneytree/security-audit-nodejs",
"license": "MIT",
"dependencies": {
"chalk": "2.4.0",
"depcheck": "0.6.9",
"is-node-maintained": "1.0.0",
"minimist": "1.2.0",
"nsp": "3.2.1",
"resolve-bin": "0.4.0",
"retire": "1.6.0",
"wanted-node-version": "1.0.1"
},
"devDependencies": {
"eslint": "4.19.1",
"husky": "0.14.3"
}
}