-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "contrast-local-scan-action",
"version": "1.0.3",
"description": "Github action that runs Contrast Local Scanner against the current github repository.",
"author": "Contrast Security",
"license": "Apache-2.0",
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.0",
"@actions/tool-cache": "^2.0.1",
"mustache": "^4.2.0"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.1.1",
"release-it": "^17.0.1"
},
"scripts": {
"lint": "eslint src",
"lint:check": "eslint src --max-warnings 0",
"format:check": "prettier -c src",
"lint-fix": "eslint **/*.js --fix",
"release": "release-it --ci"
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "[auto] Release ${version} [skip ci]"
},
"npm": {
"publish": false
}
}
}