-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.31 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-cekit",
"version": "1.1.7",
"description": "Setup your GitHub Actions workflow with Container Evolution Kit (CEKit)",
"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/cekit/actions-setup-cekit.git"
},
"keywords": [
"actions",
"github",
"CEKit",
"Docker",
"Container",
"Image"
],
"author": "Marc Nuri <[email protected]> (https://blog.marcnuri.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cekit/actions-setup-cekit/issues"
},
"homepage": "https://github.com/cekit/actions-setup-cekit#readme",
"dependencies": {
"@actions/core": "1.11.0",
"@actions/github": "6.0.0",
"@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/* && git commit -m \"Husky commit - remove devDependencies from node_modules\" && npm install"
}
}
}