-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 800 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
{
"name": "websocket-pool",
"description": "A pool of WebSocket connections. Supports reconnecting.",
"version": "1.3.2",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"websocket",
"ws",
"pool",
"load balancer",
"load balancing",
"retry",
"reconnect"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/websocket-pool",
"repository": "derhuerst/websocket-pool",
"bugs": "https://github.com/derhuerst/websocket-pool/issues",
"license": "ISC",
"engines": {
"node": ">=6"
},
"dependencies": {
"debug": "^3.1.0",
"retry": "^0.13.1"
},
"devDependencies": {
"@derhuerst/round-robin-scheduler": "^1.0.3",
"ws": "^5.2.2"
},
"scripts": {
"test": "env NODE_ENV=dev node test.js",
"prepublishOnly": "npm test"
}
}