-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
44 lines (44 loc) · 919 Bytes
/
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
{
"name": "pm2-webshell",
"version": "1.24.1",
"description": "Expose a fully capable terminal in your browser ",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"pmx": "^0.5.5",
"tty.js": "^0.2.15"
},
"config": {
"port": "8080",
"username": "foo",
"password": "bar",
"https": "false",
"bind": "0.0.0.0",
"ssl_key" : "./term-default.key",
"ssl_cert" : "./term-default.crt"
},
"keywords": [
"webshell",
"terminal",
"ssh",
"webssh",
"pm2"
],
"repository": {
"type": "git",
"url": "git://github.com/pm2-hive/pm2-webshell.git"
},
"apps": [
{
"script": "app.js",
"name" : "pm2-webshell",
"max_memory_restart": "100M",
"merge_logs": true,
"interpreter" : "[email protected]"
}
],
"author": ["keymetrics", "JNK"],
"license": "ISC"
}