-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ws-reqonet",
"description": "Simple WebSocket wrapper with reconnect logic",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nwaughachukwuma/ws-reqonet.git"
},
"author": "nwaughachukwuma<nwaughac@gmail.com>",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"prepare": "husky install",
"tsc": "tsc",
"build": "tsup",
"test": "tsc && tsd && ava",
"pretty-quick": "pretty-quick --staged"
},
"sideEffects": false,
"files": [
"lib"
],
"workspaces": [
"server",
"app"
],
"keywords": [
"ws-reqonet",
"reconnect-ws",
"websocket",
"reconnection"
],
"dependencies": {
"events": "^3.3.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"ava": "^5.2.0",
"browser-env": "^3.3.0",
"husky": "^8.0.1",
"mock-socket": "^9.2.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tsd": "^0.25.0",
"tsup": "^6.6.3",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"tsd": {
"directory": "./tsd"
},
"ava": {
"require": [
"./test/_browser-env.cjs"
]
}
}