-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "ga-setup-minikube",
"version": "0.1.2",
"private": true,
"description": "Sets up Minikube for your Github Actions.",
"main": "lib/setup-minikube.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opsgang/ga-setup-minikube.git"
},
"keywords": [
"actions",
"kubernetes",
"minikube",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^1.6.1",
"semver": "^7.3.4"
},
"devDependencies": {
"@actions/io": "^1.0.2",
"@types/jest": "^26.0.20",
"@types/nock": "^10.0.3",
"@types/node": "^14.14.31",
"@types/semver": "^7.3.4",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"nock": "^13.0.9",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run build && npm run format"
}
}
}