-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
70 lines (70 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "synopsys-action",
"version": "1.13.0",
"private": true,
"description": "Perform security scan using Synopsys Tools",
"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 --config jest.config.js",
"contract-test": "jest --config jest.config.e2e.js --forceExit --detectOpenHandles",
"all": "npm run format && npm run lint && npm run build && npm run package && npm test",
"postversion": "git add * && git commit -m 'updated CHANGELOG and version from semantic' && git push && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synopsys-sig/synopsys-action.git"
},
"keywords": [],
"author": "Synopsys Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/synopsys-sig/synopsys-action/issues"
},
"homepage": "https://github.com/synopsys-sig/synopsys-action#readme",
"devDependencies": {
"@types/dom-parser": "^0.1.1",
"@types/jest": "^29.1.0",
"@types/node": "^16.11.6",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.2",
"@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": "^29.7.0",
"prettier": "^2.4.1",
"ts-jest": "^29.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@types/unzipper": "^0.10.5",
"actions-artifact-v1": "npm:@actions/artifact@^1.1.0",
"actions-artifact-v2": "npm:@actions/artifact@^2.1.8",
"dom-parser": "^0.1.6",
"nock": "^13.3.3",
"path": "^0.12.7",
"typed-rest-client": "^1.8.9",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"jest": {
"coverageThreshold": {
"global": {
"lines": 80
}
}
}
}