-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "hypertunnel-server",
"version": "1.1.11",
"description": "Server for hypertunnel, a TCP/IP relay to expose local services on the internet.",
"main": "index.js",
"repository": "berstend/hypertunnel",
"author": "berstend & tewarid",
"license": "MIT",
"scripts": {
"docs": "exit 0",
"test": "ava -v && standard"
},
"engines": {
"node": ">=8"
},
"bin": {
"hypertunnel-server": "./cli.js"
},
"keywords": [
"hypertunnel",
"hypertunnel-server",
"localtunnel",
"ngrok",
"tcp/ip",
"proxy",
"nat",
"relay",
"hole punching",
"hyper",
"node-tcp-relay"
],
"dependencies": {
"commander": "^2.15.1",
"debug": "^3.1.0",
"get-port": "^3.2.0",
"greenlock-express": "^2.1.6",
"greenlock-koa": "^2.1.3",
"hypertunnel-tcp-relay": "^1.2.7",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-sslify": "^2.1.2",
"port-validator": "^0.1.0-beta1"
},
"devDependencies": {
"ava": "^0.25.0",
"execa": "^0.10.0",
"standard": "^11.0.1"
}
}