-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "ssh-tunneler",
"version": "1.0.0",
"description": "Plugin for gemini and hermione to set up ssh tunnel while running tests",
"main": "lib/tunnel.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/ssh-tunneler.git"
},
"keywords": [
"gemini",
"hermione",
"plugin",
"ssh",
"tunnel"
],
"author": "Evgeniy Gavryushin <gavryushin@yandex-team.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/ssh-tunneler/issues"
},
"homepage": "https://github.com/gemini-testing/ssh-tunneler#readme",
"dependencies": {
"lodash": "^4.17.2",
"ssh-tun": "^1.3.0",
"urijs": "^1.18.4"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.11.1",
"eslint-config-gemini-testing": "^2.4.0",
"mocha": "^3.2.0",
"qemitter": "^1.1.0",
"sinon": "^1.17.6"
}
}