-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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": "setup-docker-scan",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to setup docker-scan",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build --source-map --license licenses.txt -o dist/setup src/setup.ts && ncc build --source-map --license licenses.txt -o dist/main src/main.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conventional-actions/setup-docker-scan.git"
},
"homepage": "https://github.com/conventional-actions/setup-docker-scan",
"bugs": {
"url": "https://github.com/conventional-actions/setup-docker-scan/issues"
},
"keywords": [
"GitHub",
"action",
"docker",
"scan",
"security"
],
"author": "Conventional Actions",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.25.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.1",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}