-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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 <code@visualon.de>",
"contributors": [
"Michael Kriese <michael.kriese@visualon.de>"
],
"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": "7.1.0",
"@types/node": "22.19.15",
"@types/shelljs": "0.10.0",
"commander": "14.0.3",
"conventional-changelog-conventionalcommits": "9.3.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"prettier-plugin-packagejson": "3.0.2",
"semantic-release": "25.0.3",
"shelljs": "0.10.0",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "^22.11.0 || >=24.11.0",
"pnpm": "^10.0.0"
}
}