generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.66 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
52
{
"name": "coverity-report-output-v7-json",
"version": "0.0.2-SNAPSHOT",
"private": true,
"description": "Parse Coverity json-output-v7 and report on the results within GitHub",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"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/coverity-report-output-v7-json.git"
},
"keywords": [],
"author": "Synopsys Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/synopsys-sig/coverity-report-output-v7-json/issues"
},
"homepage": "https://github.com/synopsys-sig/coverity-report-output-v7-json#readme",
"dependencies": {
"@actions/artifact": "^0.6.1",
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@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",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.5",
"prettier": "^2.4.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}