-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "github-actions-setup-openshift",
"version": "1.1.5",
"description": "Set up your GitHub Actions workflow with a specific version of OKD OpenShift Cluster",
"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-openshift.git"
},
"keywords": [
"actions",
"github",
"kubernetes",
"openshift",
"okd",
"oc"
],
"author": "Marc Nuri <marc@marcnuri.com> (https://blog.marcnuri.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/manusa/actions-setup-openshift/issues"
},
"homepage": "https://github.com/manusa/actions-setup-openshift#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@actions/tool-cache": "2.0.1",
"axios": "1.5.1"
},
"devDependencies": {
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "2.8.7"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run format",
"post-commit": "git rm --cached -r node_modules/ && npm prune --production && git add node_modules/* && git commit -m \"Husky commit - remove devDependencies from node_modules\" && npm install"
}
}
}