-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.27 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-helper",
"version": "4.0.1",
"description": "Helps you understand your npm audit findings so they're not too overwhelming",
"main": "lib/help.js",
"keywords": [
"npm",
"audit",
"security",
"vulnerability",
"pipe",
"nsp"
],
"repository": {
"type": "git",
"url": "https://github.com/rouanw/npm-audit-helper.git"
},
"homepage": "https://rouanw.github.io/npm-audit-helper/",
"bugs": {
"url": "https://github.com/rouanw/npm-audit-helper/issues"
},
"engines": {
"npm": ">=6.1.0"
},
"bin": {
"npm-audit-helper": "bin/cli.js"
},
"scripts": {
"lint": "eslint .",
"test": "tape test/*.js",
"sample": "cat sample_input/example.json | node bin/cli"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"author": {
"name": "Rouan Wilsenach",
"url": "https://rouanw.github.io/"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"get-stdin": "^8.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"npm-audit-report": "^2.1.5"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"tape": "^5.0.1"
}
}