-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
42
43
44
45
46
{
"name": "ws-server-wrapper",
"version": "1.6.1",
"description": "Lightweight WebSocketServer wrapper lib using ws-wrapper to wrap connected WebSockets",
"main": "./lib/wrapper.js",
"scripts": {
"format": "prettier --config .prettierrc --write \"**/*.js\"",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bminer/ws-server-wrapper.git"
},
"keywords": [
"ws-wrapper",
"websocket",
"ws",
"event",
"handling",
"channels",
"request",
"namespace",
"server"
],
"dependencies": {
"ws-wrapper": ">=1.3 <3"
},
"engine": {
"node": ">=4"
},
"author": "Blake C. Miner",
"license": "MIT",
"bugs": {
"url": "https://github.com/bminer/ws-server-wrapper/issues"
},
"homepage": "https://github.com/bminer/ws-server-wrapper#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"module-concat": "^2.3.0",
"prettier": "^3.3.2",
"ws": "^8.17.1"
}
}