forked from billchurch/webssh2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
{
"name": "WebSSH2",
"version": "0.1.1",
"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",
"colors": "^1.1.2",
"debug": "^2.6.8",
"express": "^4.15.3",
"express-session": "^1.15.3",
"morgan": "^1.8.2",
"read-config": "^1.6.0",
"socket.io": "^1.7.4",
"ssh2": "^0.5.4",
"validator": "^7.0.0"
},
"scripts": {
"start": "node index",
"test": "snyk test",
"watch": "nodemon index.js",
"build": "grunt copy concat uglify",
"standard": "standard --verbose | snazzy"
},
"devDependencies": {
"bithound": "^1.7.0",
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.0.1",
"nodemon": "^1.11.0",
"snazzy": "^7.0.0",
"snyk": "^1.30.1",
"standard": "^10.0.2",
"xterm": "^2.6.0"
},
"standard": {
"ignore": [
"public/webssh2.js",
"public/src/js/*.js"
]
}
}