-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"type": "module",
"name": "@mswjs/socket.io-binding",
"version": "0.1.1",
"description": "Binding to mock Socket.IO connections with Mock Service Worker",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "vitest",
"build": "tsup",
"release": "release publish"
},
"keywords": [
"msw",
"socket.io",
"socket",
"websocket",
"connection",
"binding",
"mock"
],
"publishConfig": {
"access": "public"
},
"files": [
"build",
"src"
],
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@mswjs/interceptors": "*"
},
"dependencies": {
"@mswjs/interceptors": "^0.37.1",
"engine.io-parser": "^5.2.3",
"socket.io-parser": "^4.2.4"
},
"devDependencies": {
"@mswjs/interceptors": "^0.37.1",
"@open-draft/deferred-promise": "^2.2.0",
"@open-draft/test-server": "^0.6.2",
"@ossjs/release": "^0.8.1",
"@types/node": "^20.11.16",
"happy-dom": "^15.11.6",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"undici": "^6.21.0",
"vitest": "^2.1.5"
}
}