-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.34 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
68
69
70
{
"name": "ws-plus",
"version": "6.0.4",
"description": "Dead Simple Websockets",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"perf": "node test/benchmark.js"
},
"type": "module",
"dependencies": {
"events": "^3.3.0",
"ws": "^8.17.0"
},
"files": [
"client.js",
"index.js",
"LICENSE",
"README.md",
"serializers.js",
"server.js",
"util.js",
"vue.js"
],
"peerDependencies": {
"vue": ">=3"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"keywords": [
"websockets",
"websocket",
"ws",
"vue"
],
"browser": {
"./index.js": "./client.js",
"ws": false
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
],
"verbose": true,
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxxyz/ws-plus.git"
},
"devDependencies": {
"@appliedminds/eslint-config": "^2.0.1",
"benchmark": "^2.1.4",
"eslint": "^9.3.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"vue": "^3.4.27"
},
"author": "Ivo Janssen <[email protected]>",
"contributors": [
"Matthew McCartney <[email protected]>"
],
"license": "MIT"
}