forked from astefanutti/kubebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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": "kubebox",
"description": "Terminal and Web console for Kubernetes",
"author": "Antonin Stefanutti",
"version": "0.4.0",
"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",
"executable-linux": "eval \"$(musl-exports)\" && 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",
"node-musl": "0.0.6"
},
"dependencies": {
"blessed": "~0.1.81",
"clipboardy": "~1.2.3",
"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",
"xterm": "~3.11.0"
},
"engines": {
"node": ">=6.0.0"
},
"nexe": {
"input": "./index.js",
"output": "kubebox^$",
"temp": ".nexe",
"browserify": {
"requires": [],
"excludes": [
"pty.js",
"term.js",
"spawn-sync"
],
"paths": []
},
"runtime": {
"nodeConfigureArgs": [
"--fully-static",
"--without-dtrace",
"--without-npm",
"--without-inspector",
"--without-etw",
"--without-perfctr"
],
"framework": "node",
"version": "9.4.0",
"ignoreFlags": true
}
}
}