-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 909 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
{
"name": "retransmitting-websocket",
"version": "1.0.0-alpha.0",
"description": "A generic higher level wrapper to ensure state is retransmitted after network failure",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"repository": "https://github.com/udevbe/retransmit.js",
"author": "[email protected]",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "jest --coverage --detectOpenHandles"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.4",
"typescript": "^4.4.3",
"ws": "^8.3.0"
}
}