forked from agebrock/tunnel-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 864 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
45
46
47
48
{
"name": "tunnel-ssh",
"version": "4.1.5",
"description": "Easy extendable SSH tunnel",
"main": "index.js",
"scripts": {
"test": "mocha && eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/agebrock/tunnel-ssh"
},
"keywords": [
"tunnel",
"ssh",
"mysql",
"develop",
"net"
],
"author": {
"name": "Christoph Hagenbrock",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"debug": "2.6.9",
"lodash.defaults": "^4.1.0",
"ssh2": "0.5.4"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "^3.2.2",
"eslint-config-xo": "^0.17.0",
"mocha": "^3.5.3"
},
"eslintConfig": {
"extends": "xo",
"env": {
"mocha": true
},
"rules": {
"indent": [
"error",
4
]
}
}
}