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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
{
"name": "dockly",
"version": "0.0.0-development",
"description": "Immersive terminal interface for managing docker containers and services",
"main": "index.js",
"scripts": {
"test": "yarn run lint",
"lint": "standard && yarn run lint:lockfile",
"lint:fix": "standard --fix",
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
"debug": "node --inspect=0.0.0.0:9222 ./index.js "
},
"files": [
"hooks",
"lib",
"src",
"widgets",
"index.js",
"dockerRunScript.sh"
],
"engines": {
"node": ">=7.6.0"
},
"bin": {
"dockly": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lirantal/dockly.git"
},
"keywords": [
"docker",
"container",
"swarm",
"cli",
"shell",
"blessed",
"command",
"command line",
"console",
"terminal"
],
"author": {
"name": "Liran Tal",
"email": "liran.tal@gmail.com"
},
"contributors": [
{
"name": "Matan Avneri",
"email": "Matan.av@gmail.com",
"url": "https://github.com/MatanAvneri"
},
{
"name": "Trevor Farlow",
"url": "https://github.com/trevdor"
},
{
"name": "Israel Roldan",
"url": "https://github.com/israelroldan",
"email": "oss@isro.me"
}
],
"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.10.1",
"chalk": "^4",
"clipboardy": "^3.0.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^5.0.5",
"dockerode": "4.0.0",
"figures": "^2.0.0",
"glob": "^7.2.3",
"lockfile-lint": "^4.12.0",
"semver": "7.6.0"
},
"devDependencies": {
"standard": "^12.0.1"
},
"release": {
"branches": "main"
},
"standard": {
"ignore": [
"docs/**"
]
}
}
|