forked from mgibeau/gitlab-npm-audit-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "@elpete/gitlab-npm-audit-parser",
"version": "1.1.1",
"description": "NPM Audit parser for GitLab dependency scanning",
"bin": "parse.js",
"main": "parse.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run --silent test:v1; npm run --silent test:v2;",
"test:v1": "printf 'v1: '; cat test/v1_report.json | ./parse.js -o GL-report.1.json >/dev/null && diff -q GL-report.1.json test/snapshot/GL-report.1.json && echo success!; RC=$?; rm GL-report.1.json; exit $RC",
"test:v2": "printf 'v2: '; cat test/v2_report.json | ./parse.js -o GL-report.2.json >/dev/null && diff -q GL-report.2.json test/snapshot/GL-report.2.json && echo success!; RC=$?; rm GL-report.2.json; exit $RC"
},
"repository": {
"type": "git",
"url": "[email protected]:elpete/gitlab-npm-audit-parser.git"
},
"keywords": [
"gitlab"
],
"author": "Maxime Gibeau",
"contributors": [
{
"name": "Eric Peterson",
"email": "[email protected]",
"url": "https://github.com/elpete"
},
{
"name": "codejedi365",
"email": "[email protected]",
"url": "https://github.com/codejedi365"
}
],
"license": "MIT",
"dependencies": {
"commander": "^2.18.0"
}
}