-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.32 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
{
"name": "acs-image-check",
"displayName": "RHACS Image Check",
"description": "Check container image for build time policy violations",
"main": "dist/index.js",
"scripts": {
"compile": "tsc -p .",
"bundle": "ncc build src/main.ts --source-map --minify",
"clean": "rm -rf lib/ dist/",
"lint": "eslint . --max-warnings=0",
"generate": "npx action-io-generator --actionYml ./action.yaml --outFile ./src/generated/inputs-outputs.ts"
},
"keywords": [],
"author": "Ram Gopinathan",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.8.2",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"mz": "^2.7.0",
"valid-url": "^1.0.9",
"uuid": "^3.3.2"
},
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.2.0",
"@types/mz": "^2.7.4",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"typescript": "^4.7.3",
"@types/uuid": "^3.4.4"
}
}