-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "graceful-ws",
"version": "1.3.4",
"description": "Graceful WebSocket wrapper with connection re-establishment capabilities.",
"main": "./lib/graceful-ws.min.js",
"module": "./lib/graceful-ws.min.mjs",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"types": "./lib/graceful-ws.min.d.ts",
"keywords": [
"websocket",
"sockets"
],
"homepage": "https://github.com/Simonwep/graceful-ws#readme",
"repository": {
"type": "git",
"url": "https://github.com/Simonwep/graceful-ws.git"
},
"bugs": {
"url": "https://github.com/Simonwep/graceful-ws/issues"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint './{src,test}/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test:ci": "npm run lint:fix && npm run build && npm run test"
},
"files": [
"src",
"lib"
],
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"puppeteer": "^17.1.2",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2",
"vitest": "^0.23.1",
"ws": "^8.8.1"
}
}