-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "adit",
"version": "1.0.11",
"description": "SSH tunnels - in any way you want it",
"main": "dist/index.js",
"scripts": {
"build": "babel index.js -d dist",
"watch": "gaze 'npm run build' index.js",
"watch-test": "mocha --watch",
"lint": "eslint index.js test",
"test": "npm run lint && mocha",
"coverage": "istanbul cover _mocha -- test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"ci": "npm run lint && npm run coveralls",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "github.com/markelog/adit"
},
"keywords": [
"tunnel",
"adit",
"forwarding",
"reverse",
"ssh"
],
"files": [
"dist",
"LICENSE"
],
"author": "Oleg Gaidarenko <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/markelog/adit/issues"
},
"homepage": "https://github.com/markelog/adit",
"dependencies": {
"babel-polyfill": "^6.6.0",
"babel-runtime": "^6.6.1",
"ssh-url": "^0.1.5",
"ssh2": "^0.5.4",
"vow": "^0.4.12"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.6.0",
"chai": "^3.3.0",
"coveralls": "^2.11.8",
"eslint": "^3.16.1",
"eslint-config-sexy": "^1.0.1",
"gaze-cli": "^0.2.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.2.0",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0"
}
}