-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "github-actions-setup-minikube",
"version": "2.13.0",
"description": "Set up your GitHub Actions workflow with a specific version of Minikube and Kubernetes",
"main": "src/index.js",
"scripts": {
"format": "prettier --write src/**/*.js",
"format-check": "prettier --check src/**/*.js",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manusa/actions-setup-minikube.git"
},
"keywords": [
"actions",
"github",
"docker",
"kubernetes",
"minikube",
"kubectl",
"k8s"
],
"author": "Marc Nuri <marc@marcnuri.com> (http://blog.marcnuri.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/manusa/actions-setup-minikube/issues"
},
"homepage": "https://github.com/manusa/actions-setup-minikube#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@actions/io": "1.1.3",
"@actions/tool-cache": "2.0.1",
"axios": "1.7.7"
},
"devDependencies": {
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run format",
"post-commit": "git rm --cached -r node_modules/ && npm prune --production && git add node_modules/* package-lock.json && git commit -m \"Husky commit - remove devDependencies from node_modules\" && npm install"
}
}
}