forked from npm/npm-audit-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "npm-audit-report",
"version": "1.3.1",
"description": "Given a response from the npm security api, render it into a variety of security reports",
"main": "index.js",
"scripts": {
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"release": "standard-version -s",
"test": "tap --100 -J --coverage test/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"keywords": [
"npm",
"security",
"report",
"audit"
],
"author": "Adam Baldwin",
"license": "ISC",
"dependencies": {
"cli-table3": "^0.5.0",
"console-control-strings": "^1.1.0"
},
"devDependencies": {
"keyfob": "^1.0.0",
"standard": "^11.0.1",
"standard-version": "^4.3.0",
"tap": "^11.1.5",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm/npm-audit-report.git"
},
"bugs": {
"url": "https://github.com/npm/npm-audit-report/issues"
},
"homepage": "https://github.com/npm/npm-audit-report#readme",
"files": [
"index.js",
"lib",
"reporters"
]
}