-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1017 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
39
40
41
42
43
44
45
46
47
{
"name": "wsrecon",
"version": "0.8.1",
"description": "Isomorphic auto reconnecting web socket client with callback support",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --watch --runInBand --detectOpenHandles",
"serve": "nodemon server.js",
"build": "node scripts/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eldoy/wsrecon.git"
},
"keywords": [
"web",
"socket",
"reconnect",
"auto",
"automatic",
"websocket",
"client",
"browser",
"fetch",
"promises",
"callback",
"isomorphic"
],
"author": "Vidar Eldøy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eldoy/wsrecon/issues"
},
"homepage": "https://github.com/eldoy/wsrecon#readme",
"dependencies": {
"isomorphic-ws": "^4.0.1"
},
"devDependencies": {
"jest": "^26.6.3",
"sirloin": "^0.19.19",
"uglify-es": "^3.3.9",
"uuid": "^8.3.2"
}
}