forked from MDSLab/wstun
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "@mdslab/wstun",
"version": "1.1.0",
"description": "A set of tools to establish TCP tunnels (or TCP reverse tunnels) over WebSocket connections for circumventing the problem of directly connect to hosts behind a strict firewall or without public IP. It also supports WebSocket Secure (wss) connections.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "./scripts/postinst"
},
"dependencies": {
"websocket": "<=1.0.28",
"optimist": "<=0.6.1",
"node-uuid":"<=1.4.7",
"under_score": "<=0.1.0",
"log4js":"<=1.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MDSLab/wstun.git"
},
"keywords": [
"tunnel",
"reverse",
"WebSocket"
],
"author": "Nicola Peditto <[email protected]>",
"contributors": [
"Dario Bruneo <[email protected]>",
"Francesco Longo <[email protected]>",
"Giovanni Merlino <[email protected]>",
"Andrea Rocco Lotronto <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MDSLab/wstun/issues"
},
"homepage": "https://github.com/MDSLab/wstun",
"bin": {
"wstun": "./bin/wstun.js"
}
}