-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "npm-audit-plus-plus",
"version": "1.1.1",
"description": "A tool to capture the output of npm audit and convert it to xml",
"main": "src/cli.ts",
"bin": {
"npm-audit-plus-plus": "dist/cli.js"
},
"scripts": {
"predebug": "npm run build",
"debug": "cat fixtures/audit-v2.json | node dist/cli.js --debug > fixtures/audit-v2.xml",
"pretest": "npm run build",
"test": "concurrently npm:test:*",
"test:plain": "cat fixtures/audit.json | node dist/cli.js > fixtures/audit.xml",
"test:ok": "cat fixtures/audit-ok.json | node dist/cli.js > fixtures/audit-ok.xml",
"test:critical": "cat fixtures/audit-criticals.json | node dist/cli.js > fixtures/audit-criticals.xml",
"test:v2": "cat fixtures/audit-v2.json | node dist/cli.js > fixtures/audit-v2.xml",
"test:node-20": "cat fixtures/audit-node-20.json | node dist/cli.js > fixtures/audit-node-20.xml",
"build": "tsc"
},
"keywords": [
"npm",
"audit",
"xml",
"gitlab",
"pipeline",
"security",
"dependency management",
"ignore",
"vulnerabilities",
"continuous integration"
],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.1.0",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/node": "^20.8.10",
"concurrently": "^8.2.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/rkristelijn/npm-audit-plus-plus"
}
}