-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
51 lines (51 loc) · 1.56 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": "detect-action",
"version": "0.3.5",
"description": "Richly integrate Synopsys Detect and Black Duck policy into your GitHub Action pipelines",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synopsys-sig/detect-action.git"
},
"keywords": [],
"author": "Synopsys Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/synopsys-sig/detect-action/issues"
},
"homepage": "https://github.com/synopsys-sig/detect-action#readme",
"dependencies": {
"@actions/artifact": "^0.5.2",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.2.0",
"@actions/tool-cache": "^1.7.1",
"@octokit/rest": "^18.12.0",
"typed-rest-client": "^1.8.6"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^8.1.0",
"jest": "^27.4.5",
"prettier": "^2.4.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}