-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "pubsub-ws",
"version": "2.0.1-beta.5",
"description": "",
"main": "lib/src/index.js",
"type": "lib/src/index.d.ts",
"scripts": {
"build": "npm run lint && tsc",
"clean": "rm -rf lib/",
"lint": "eslint . --ext .ts --max-warnings=0",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FiveOFive/pubsub-ws.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/FiveOFive/pubsub-ws/issues"
},
"homepage": "https://github.com/FiveOFive/pubsub-ws#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^16.0.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"peerDependencies": {
"@types/node": ">=16.0.0"
}
}