-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 963 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
{
"name": "veracode-ado-workitems-action",
"version": "1.0.0",
"description": "GitHub Action to import Veracode flaws into Azure DevOps work items",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"bundle": "ncc build src/index.ts -o dist && npm run bundle:cleanup",
"bundle:cleanup": "cd dist && find . -type f ! -name 'index.js' -delete && cd ..",
"package": "npm run bundle",
"clean": "rm -rf dist",
"test:local": "npm run build && cd local-test && npm install && npm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@xmldom/xmldom": "^0.8.10",
"axios": "^1.13.4",
"azure-devops-node-api": "^11.0.1",
"q": "^1.5.1",
"sjcl": "^1.0.8"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/q": "^1.5.8",
"@types/sjcl": "^1.0.34",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}