-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 942 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
{
"name": "WebSSH2",
"version": "0.0.2",
"ignore": [
".gitignore"
],
"bin": "./index.js",
"description": "A Websocket to SSH2 gateway using term.js, socket.io, ssh2, and express",
"homepage": "https://github.com/billchurch/WebSSH2",
"keywords": "ssh webssh terminal webterminal",
"license": "SEE LICENSE IN FILE - LICENSE",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/billchurch/WebSSH2.git"
},
"contributors": [
{
"name": "Bill Church",
"email": "wmchurch@gmail.com"
}
],
"engines": {
"node": "0.12.7"
},
"bugs": {
"url" : "https://github.com/billchurch/WebSSH2/issues"
},
"dependencies": {
"basic-auth": "^1.1.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.1",
"read-config": "^1.6.0",
"socket.io": "^1.6.0",
"ssh2": "^0.5.4",
"xterm": "^2.3.0"
},
"scripts": {
"start": "node index"
}
}