-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.54 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": "veracode-process-pipeline-scan-results",
"version": "1.0.0",
"description": "Process Veracode Pipeline Scan Results to create checks annotations on GitHub and Filter out Mitigated Flaws",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc",
"pack": "ncc build src/index.ts -o dist",
"test": "npm run test:unit",
"test:coverage": "jest --clearCache && npm run test:unit:coverage",
"test:unit": "jest --config ./test/unit/jest.config.ts ./test/unit",
"test:unit:coverage": "jest --coverage --config ./test/unit/jest.config.ts ./test/unit",
"lint": "eslint . 'src/**/*.ts'",
"prettier": "prettier --write . 'src/**/*.ts'"
},
"keywords": [
"Veracode",
"Mitigated",
"Pipeline",
"Checks annotations",
"GitHub",
"Actions"
],
"author": "Vincent Deng <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@actions/artifact": "^2.1.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.3",
"@types/sjcl": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.2",
"sjcl": "^1.0.8"
}
}