-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 977 Bytes
/
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
{
"name": "ci",
"version": "0.0.0",
"description": "CI pipeline automation scripts for Eclipse JKube",
"main": "src/index.js",
"scripts": {
"format": "prettier --write src/**/*.js",
"format-check": "prettier --check src/**/*.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkubeio/ci.git"
},
"author": "The Eclipse JKube team",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/jkubeio/ci/issues"
},
"homepage": "https://github.com/jkubeio/ci#readme",
"dependencies": {
"@octokit/rest": "20.0.2",
"adm-zip": "0.5.10"
},
"devDependencies": {
"husky": "9.0.10",
"jest": "29.7.0",
"prettier": "3.2.5"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "git rm --cached -r node_modules/ && npm prune --production && git add node_modules/* package-lock.json"
}
},
"jest": {
"setupFiles": [
"./jest.setup.js"
]
}
}