forked from gemini-testing/ssh-tun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "ssh-tun",
"version": "1.4.0",
"description": "Module for establishing ssh tunnel",
"keywords": [
"ssh",
"tunnel"
],
"author": "Ilia Isupov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/ssh-tun/"
},
"homepage": "https://github.com/gemini-testing/ssh-tun/",
"bugs": "https://github.com/gemini-testing/ssh-tun/issues",
"maintainers": [
{
"name": "Ilia Isupov",
"email": "[email protected]",
"github-username": "swinx"
},
{
"name": "Anton Usmansky",
"email": "[email protected]",
"github-username": "j0tunn"
}
],
"contributors": [
"Ilia Isupov <[email protected]>",
"Anton Usmansky <[email protected]>"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "npm run lint && npm run unit-test",
"lint": "jshint . && jscs .",
"unit-test": "istanbul test _mocha --recursive test"
},
"dependencies": {
"inherit": "^2.2.2",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.4",
"istanbul": "^0.3.20",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"qemitter": "^1.0.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"lodash": "^3.10.1"
}
}