-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "kube-score-ga",
"version": "0.1.3",
"description": "Github action to execute kube-score with selected manifests (YAML, Helm or Kustomize)",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts -o lib",
"lint": "eslint **/*.ts --quiet --fix",
"lint:no-fix": "eslint **/*.ts --quiet",
"test": "jest --passWithNoTests",
"coverage": "jest --collectCoverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piraces/kube-score-ga.git"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"keywords": [],
"author": "Raúl Piracés Alastuey <[email protected]> (https://piraces.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/piraces/kube-score-ga/issues"
},
"homepage": "https://github.com/piraces/kube-score-ga#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"axios": "^0.27.2",
"glob": "^7.2.0"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
}
}