forked from mhzed/wstunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 964 Bytes
/
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
{
"name": "wstunnel",
"version": "1.4.0",
"description": "tunnel over websocket",
"main": "./lib/wst.js",
"scripts": {
"test": "mocha test/test.js",
"testssh": "mocha test/testssh.js",
"prettier": "prettier --write ."
},
"repository": "https://github.com/mhzed/wstunnel",
"author": {
"name": "zed",
"email": "mhzedd@gmail.com"
},
"homepage": "https://github.com/mhzed/wstunnel",
"keywords": [
"websocket",
"tunnel"
],
"license": "MIT",
"engines": {
"node": "*"
},
"dependencies": {
"http-proxy-agent": ">=4.0.0",
"https-proxy-agent": ">=4.0.0",
"lawg": "1.0.3",
"machine-uuid": "^1.2.0",
"node-uuid": "^1.4.8",
"optimist": "0.3.5",
"phuture": "^1.0.7",
"socks-proxy-agent": "^4.0.1",
"underscore": "1.12.1",
"websocket": "^1.0.28"
},
"devDependencies": {
"prettier": "^2.1.2",
"mocha": "^8.1.2"
},
"bin": {
"wstunnel": "./bin/wstt.js"
}
}