-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "teleterminal",
"version": "1.1.4",
"description": "Host a terminal command using a web server",
"main": "server.js",
"scripts": {
"bld:clean": "del-cli ./dist ./.cache",
"bld:static": "cpy \"./static/*.ico\" \"./dist\"",
"build": "npm run bld:clean && npm run bld:static && parcel build ./static/index.html",
"develop": "npm run bld:clean && parcel ./static/index.html",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amwmedia/teleterminal.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/amwmedia/teleterminal/issues"
},
"homepage": "https://github.com/amwmedia/teleterminal#readme",
"dependencies": {
"boxen": "^2.1.0",
"chalk": "^2.4.1",
"columnify": "^1.5.4",
"minimist": "^1.2.0",
"node-pty": "^0.10.1",
"ora": "^3.0.0",
"socket.io": "^2.2.0",
"string-argv": "^0.1.1",
"xterm": "^3.9.1"
},
"devDependencies": {
"cpy-cli": "^3.1.1",
"del-cli": "^4.0.1",
"parcel-bundler": "^1.12.5",
"glob-parent": ">=5.1.2"
},
"bin": {
"teleterminal": "./server.js",
"tt": "./server.js"
}
}