-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 764 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 764 Bytes
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
{
"name": "wsproxy",
"description": "This is a websocket to tcp proxy, written in node.js. It is dynamic and will proxy to various tcp servers.",
"version": "1.2.32",
"author": "roBrowser",
"repository": {
"type": "git",
"url": "https://github.com/herenow/wsProxy.git"
},
"bugs": {
"url": "https://github.com/herenow/wsProxy/issues"
},
"main": "index.js",
"bin": {
"wsproxy": "./index.js"
},
"dependencies": {
"optimist": "0.6.0",
"ws": "^2.3.1"
},
"devDependencies": {
"mocha": "1.18.x"
},
"scripts": {
"test": "mocha",
"start": "node index.js"
},
"engines": {
"node": ">=0.6"
},
"keywords": [
"wsproxy",
"roproxy",
"robrowser",
"websocket-proxy",
"ws2tcp"
]
}