-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1 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
49
50
{
"name": "wf-docker",
"version": "1.0.3",
"type": "module",
"description": "CLI tool for generating docker files from a template, building images from it, publishing them and optionally generating a readme file.",
"repository": {
"url": "https://github.com/wrk-flow/wf-docker",
"type": "git"
},
"main": "index.js",
"engines": {
"node": ">=14"
},
"bin": {
"wf-docker": "index.js"
},
"wf-docker": {
"image": "wrkflow/wf-docker",
"tags": [
"12",
"14",
"16",
"17",
"12-alpine",
"14-alpine",
"16-alpine",
"17-alpine"
],
"run": [
"node --version",
"npm --version",
"wf-docker --version"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Docker",
"CLI"
],
"author": "Martin Kluska <[email protected]>",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"meow": "^10.1.2"
}
}