-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 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
{
"name": "tls-tunnel",
"description": "A Server and client for proxying local ports through public interfaces",
"version": "1.0.0",
"homepage": "https://github.com/pghalliday/tls-tunnel",
"author": {
"name": "Peter Halliday",
"email": "pghalliday@gmail.com",
"url": "http://stuffpetedoes.blogspot.nl/"
},
"repository": {
"type": "git",
"url": "git://github.com/pghalliday/tls-tunnel.git"
},
"bugs": {
"url": "https://github.com/pghalliday/tls-tunnel/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pghalliday/tls-tunnel/blob/master/LICENSE-MIT"
}
],
"main": "src/",
"engines": {
"node": ">= 0.8.12"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"single-tls-tunnel": "~1.0.0"
},
"devDependencies": {
"grunt": "0.3.17",
"chai": "1.3.0",
"grunt-mocha-test": "0.0.1",
"grunt-shell": "0.1.3",
"tunnel-stream": "0.0.1",
"checklist": "0.0.6",
"prompt": "~0.2.9"
},
"keywords": [
"tls",
"tunnel",
"reverse proxy",
"dynamic"
]
}