-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 851 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
{
"author": "Maxime GRIS",
"name": "@maximegris/node-websockify",
"description": "node-websockify is a WebSocket-to-TCP proxy/bridge you can use in a NodeJS program",
"version": "1.0.7",
"license": "MIT",
"main": "websockify.js",
"bugs": {
"url": "https://github.com/maximegris/node-websockify/issues"
},
"homepage": "https://github.com/maximegris/node-websockify#readme",
"keywords": [
"webscoket",
"tcp",
"proxy"
],
"repository": {
"type": "git",
"url": "git://github.com/maximegris/node-websockify.git"
},
"dependencies": {
"mime": "2.4.4",
"ws": "7.2.1"
},
"devDependencies": {},
"scripts": {
"test": "cd test && npm install && npm start"
},
"files": [
"websockify.js"
],
"bin": {
"websockify": "./websockify.js"
},
"engines": {
"node": ">=0.8.9"
}
}