-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 Bytes
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": "depler",
"version": "1.18.1",
"description": "Deploy docker app to remote host easily without any dependencies like registry or swarm.",
"scripts": {
"watch": "./node_modules/.bin/tsc -w",
"build": "rm -rf ./dist && ./node_modules/.bin/tsc"
},
"main": "./dist/index.js",
"author": "Pavel Kondratenko <iam@kondratenko.me>",
"repository": "github:gustarus/depler",
"license": "ISC",
"engines": {
"node": ">=8.11.1"
},
"keywords": [
"docker",
"swarm",
"deploy"
],
"bin": {
"depler": "./dist/index.js"
},
"devDependencies": {
"@types/commander": "2.12.2",
"@types/fs-extra": "8.0.1",
"@types/lodash.merge": "^4.6.6",
"@types/node": "13.7.1",
"@types/yargs": "15.0.3",
"typescript": "3.7.5"
},
"dependencies": {
"child_process": "1.0.2",
"colors": "1.4.0",
"commander": "4.1.1",
"fs": "0.0.1-security",
"fs-extra": "8.1.0",
"lodash.merge": "4.6.2",
"moment": "2.24.0"
}
}