-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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": "code-security-action",
"version": "1.0.0",
"type": "commonjs",
"main": "index.js",
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/core": "^3.6.0",
"@octokit/plugin-retry": "^4.1.6",
"@types/sarif": "^2.1.4",
"@types/tmp": "^0.2.3",
"prettier": "^2.8.1",
"simple-git": "^3.19.1",
"tmp": "^0.2.1",
"ts-md5": "^1.3.1"
},
"scripts": {
"test": "npx jest",
"compile": "npx tsc",
"lint-check": "npx eslint **/*.ts",
"lint-fix": "npx eslint --fix **/*.ts",
"pretty-check": "npx prettier --check **/*.ts **/*.yml **/*.json",
"pretty-fix": "npx prettier --write **/*.ts **/*.yml **/*.json",
"prepare": "npx husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lacework/code-security-action.git"
},
"keywords": [],
"author": "Lacework",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lacework/code-security-action/issues"
},
"homepage": "https://github.com/lacework/code-security-action#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}