forked from astefanutti/kubebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "kubebox",
"description": "Terminal console for Kubernetes clusters",
"author": "Antonin Stefanutti",
"version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/astefanutti/kubebox",
"main": "index.js",
"bin": {
"kubebox": "index.js"
},
"scripts": {
"start": "node index.js",
"browserify": "browserify -r ./lib/config/context.js:context -r ./lib/http-then.js:http-then -r ./lib/kubebox.js:kubebox -r ./lib/task.js:task -r blessed -r urijs -i clipboardy -u pty.js -u xterm -u term.js -o docs/kubebox.js",
"browserify-debug": "browserify --debug -r ./lib/config/context.js:context -r ./lib/http-then.js:http-then -r ./lib/kubebox.js:kubebox -r ./lib/task.js:task -r blessed -r urijs -i clipboardy -u pty.js -u xterm -u term.js | exorcist docs/kubebox.js.map > docs/kubebox.js",
"bundle": "browserify index.js -o bundle.js -u pty.js -u term.js -u spawn-sync --node",
"executable": "nexe package.json",
"server": "node ./docs/server.js"
},
"pkg": {
"scripts": "node_modules/blessed/lib/widgets/*.js",
"assets": "node_modules/blessed/usr/*"
},
"repository": {
"type": "git",
"url": "https://github.com/astefanutti/kubebox.git"
},
"devDependencies": {
"browserify": "~14.4.0",
"exorcist": "^0.4.0",
"nexe": "~1.1.3"
},
"dependencies": {
"blessed": "~0.1.81",
"clipboardy": "~1.2.3",
"xterm": "~3.6.0",
"drawille-canvas-blessed-contrib": "^0.1.3",
"js-yaml": "~3.7.0",
"lodash.debounce": "^4.0.8",
"moment": "~2.21.0",
"moment-duration-format": "~1.3.0",
"urijs": "~1.18.4",
"x256": "0.0.2"
},
"engines": {
"node": ">=6.0.0"
},
"nexe": {
"input": "./index.js",
"output": "kubebox^$",
"temp": ".nexe",
"browserify": {
"requires": [],
"excludes": [
"pty.js",
"term.js",
"spawn-sync"
],
"paths": []
},
"runtime": {
"nodeConfigureOpts": [
"--fully-static"
],
"framework": "node",
"version": "9.4.0",
"ignoreFlags": true
}
}
}