1 | {
|
2 | "name": "dockly",
|
3 | "version": "3.24.2",
|
4 | "description": "Immersive terminal interface for managing docker containers and services",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "test": "yarn run lint",
|
8 | "lint": "standard && yarn run lint:lockfile",
|
9 | "lint:fix": "standard --fix",
|
10 | "lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn",
|
11 | "debug": "node --inspect=0.0.0.0:9222 ./index.js "
|
12 | },
|
13 | "files": [
|
14 | "hooks",
|
15 | "lib",
|
16 | "src",
|
17 | "widgets",
|
18 | "index.js",
|
19 | "dockerRunScript.sh"
|
20 | ],
|
21 | "engines": {
|
22 | "node": ">=7.6.0"
|
23 | },
|
24 | "bin": {
|
25 | "dockly": "./index.js"
|
26 | },
|
27 | "repository": {
|
28 | "type": "git",
|
29 | "url": "git+https://github.com/lirantal/dockly.git"
|
30 | },
|
31 | "keywords": [
|
32 | "docker",
|
33 | "container",
|
34 | "swarm",
|
35 | "cli",
|
36 | "shell",
|
37 | "blessed",
|
38 | "command",
|
39 | "command line",
|
40 | "console",
|
41 | "terminal"
|
42 | ],
|
43 | "author": {
|
44 | "name": "Liran Tal",
|
45 | "email": "liran.tal@gmail.com"
|
46 | },
|
47 | "contributors": [
|
48 | {
|
49 | "name": "Matan Avneri",
|
50 | "email": "Matan.av@gmail.com",
|
51 | "url": "https://github.com/MatanAvneri"
|
52 | },
|
53 | {
|
54 | "name": "Trevor Farlow",
|
55 | "url": "https://github.com/trevdor"
|
56 | },
|
57 | {
|
58 | "name": "Israel Roldan",
|
59 | "url": "https://github.com/israelroldan",
|
60 | "email": "oss@isro.me"
|
61 | }
|
62 | ],
|
63 | "license": "MIT",
|
64 | "bugs": {
|
65 | "url": "https://github.com/lirantal/dockly/issues"
|
66 | },
|
67 | "homepage": "https://github.com/lirantal/dockly#readme",
|
68 | "dependencies": {
|
69 | "blessed": "^0.1.81",
|
70 | "blessed-contrib": "^4.10.1",
|
71 | "chalk": "^4",
|
72 | "clipboardy": "^2.3.0",
|
73 | "command-line-args": "^5.2.1",
|
74 | "command-line-usage": "^5.0.5",
|
75 | "dockerode": "3.3.5",
|
76 | "figures": "^2.0.0",
|
77 | "glob": "^7.2.3",
|
78 | "lockfile-lint": "^3.0.9",
|
79 | "semver": "7.5.2"
|
80 | },
|
81 | "devDependencies": {
|
82 | "standard": "^12.0.1"
|
83 | },
|
84 | "release": {
|
85 | "branches": "main"
|
86 | },
|
87 | "standard": {
|
88 | "ignore": [
|
89 | "docs/**"
|
90 | ]
|
91 | }
|
92 | }
|