forked from Lerer/veracode-sca
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "Veracode Dependency Scanning",
"version": "1.0.8",
"description": "An action to execute Veracode Software Composition Analysis Scaning as a GitHub Action",
"main": "./dist/index.js",
"scripts": {
"test-gql": "tsc && NODE_ENV=test node -r dotenv/config ./dist/test/graphql.js",
"test-url": "tsc && NODE_ENV=test node -r dotenv/config ./dist/test/testRun.js",
"clean": "rm -rf ./dist/ || true",
"build": "npm run clean && ncc build ./src/action.ts --license license"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veracode/veracode-sca.git"
},
"keywords": [
"Veracode",
"SCA",
"Other"
],
"author": "Veracode",
"license": "MIT",
"bugs": {
"url": "https://github.com/veracode/veracode-sca/issues"
},
"homepage": "https://github.com/veracode/veracode-sca#readme",
"devDependencies": {
"@types/node": "^16.18.98",
"@vercel/ncc": "^0.33.0",
"dotenv": "^15.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@actions/artifact": "^2.1.4",
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0"
}
}