-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "docker-builder",
"version": "0.0.0-PLACEHOLDER",
"private": true,
"homepage": "https://github.com/visualon/docker-builder#readme",
"bugs": {
"url": "https://github.com/visualon/docker-builder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/visualon/docker-builder.git"
},
"license": "MIT",
"author": "VisualOn GmbH <[email protected]>",
"contributors": [
"Michael Kriese <[email protected]>"
],
"type": "module",
"scripts": {
"build": "run-s 'release:prepare {@}' --",
"lint": "prettier -c -u '**/*.*'",
"lint-fix": "prettier -w -u '**/*.*'",
"prepare": "husky install",
"push": "run-s 'release:publish {@}' --",
"release:prepare": "node bin/prepare-release.js",
"release:publish": "node bin/publish-release.js"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@types/node": "22.13.1",
"@types/shelljs": "0.8.15",
"commander": "13.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.8",
"semantic-release": "24.2.2",
"shelljs": "0.8.5",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.11.0",
"pnpm": "^10.0.0"
}
}