-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.56 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
{
"private": true,
"name": "docker-stash",
"version": "0.4.2",
"description": "A collection of strange functions, for development",
"author": "dr-js",
"license": "MIT",
"repository": "github:dr-js/docker-stash",
"scripts": {
"// repo ========================": "",
"version-bump": "dr-dev --version-bump-git-branch --git-commit --debug",
"tag-push": "dr-dev --version-bump-push-check --git-commit",
"// build =======================": "",
"build-debian12": "node source/debian12/build.js",
"build-debian12-core": "node source/debian12/build-core.js",
"build-debian12-layer": "node source/debian12/build-layer.js ruby3",
"// push ========================": "",
"push-debian12-all": "node source/debian12/push.js ALL",
"push-debian12-manifest-all": "node source/debian12/push-manifest.js ALL",
"// docker ======================": "",
"docker-pre-pull-buildkit": "sudo docker image pull \"$(node -p \"require('./source/function.js').BUILDKIT_SYNTAX\")\"",
"docker-prune": "node source/docker-prune.js",
"docker-ls": "node source/docker-ls.js",
"// =============================": "",
"fix-script-filemode": "bash -c '(shopt -s globstar && chmod --changes +x source/**/*.sh && ls -al source/**/*.sh)'",
"lint": "eslint ./source/",
"test": "npm run lint",
"prepack": "echo \"Error: do not pack this package\" && exit 1"
},
"engines": {
"node": ">=18.12",
"npm": ">=8.19"
},
"devDependencies": {
"@dr-js/core": "^0.5.17",
"@dr-js/dev": "^0.5.14",
"@dr-js/dev-eslint": "^0.5.14"
}
}