forked from lirantal/dockly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dockly",
"version": "0.0.0-development",
"description": "Interactive shell for managing Docker containers",
"main": "index.js",
"scripts": {
"test": "yarn run lint",
"lint": "standard",
"lint:fix": "standard --fix",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=7.6.0"
},
"bin": {
"dockly": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lirantal/dockly.git"
},
"keywords": [
"docker",
"container",
"cli",
"shell",
"blessed",
"command",
"command line",
"console",
"terminal"
],
"author": {
"name": "Liran Tal",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matan Avneri",
"email": "[email protected]",
"url": "https://github.com/MatanAvneri"
},
{
"name": "Trevor Farlow",
"url": "https://github.com/trevdor"
},
{
"name": "Israel Roldan",
"url": "https://github.com/israelroldan",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lirantal/dockly/issues"
},
"homepage": "https://github.com/lirantal/dockly#readme",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.7.5",
"chalk": "^2.0.1",
"command-line-args": "^4.0.6",
"command-line-usage": "^4.0.0",
"dockerode": "^2.5.0",
"figures": "^2.0.0",
"glob": "^7.1.2",
"opn": "^5.1.0",
"semver": "^5.5.0"
},
"devDependencies": {
"semantic-release": "^12.4.1",
"standard": "^10.0.2"
},
"release": {
"branch": "master"
}
}