-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 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
{
"name": "ws-tunnel",
"version": "0.4.8",
"description": "a websocket tunnel to join sockets",
"main": "wstunnel_with_http_server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node ./server/wstunnel-httpserver.js",
"socks5Server": "node ./universal/SocksServer.js",
"httpProxyServer": "node ./universal/HttpProxyServer.js",
"client": "node ./client/localListener.js"
},
"keywords": [],
"author": "arily",
"license": "ISC",
"dependencies": {
"console-stamp": "^0.2.9",
"dgram": "^1.0.1",
"http2-wrapper": "^2.1.8",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.2",
"path": "^0.12.7",
"proxy": "^1.0.2",
"socksv5": "0.0.6",
"url-match-patterns": "^0.2.0",
"uuid": "^8.3.2",
"ws": "^7.0.1"
},
"workspaces": [
"lib/lib-ws-tunnel"
],
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0"
}
}