-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "socketcluster-client",
"description": "SocketCluster JavaScript client",
"version": "19.2.3",
"homepage": "https://socketcluster.io/",
"contributors": [
{
"name": "Jonathan Gros-Dubois",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/SocketCluster/socketcluster-client.git"
},
"scripts": {
"build": "./node_modules/.bin/rollup --config ./rollup.config.js",
"test": "mocha --reporter spec --timeout 5000 --slow 5000"
},
"keywords": [
"websocket",
"realtime",
"client",
"socketcluster"
],
"dependencies": {
"ag-auth": "^2.1.0",
"ag-channel": "^5.0.0",
"ag-request": "^1.1.0",
"async-stream-emitter": "^7.0.1",
"buffer": "^5.2.1",
"clone-deep": "^4.0.1",
"linked-list": "^2.1.0",
"sc-errors": "^3.0.0",
"sc-formatter": "^4.0.0",
"stream-demux": "^10.0.1",
"uuid": "^8.3.2",
"vinyl-buffer": "^1.0.1",
"ws": "^8.18.0"
},
"browser": {
"ws": "./lib/ws-browser.js"
},
"readmeFilename": "README.md",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"localStorage": "^1.0.3",
"mocha": "^10.2.0",
"rollup": "^3.28.1",
"socketcluster-server": "*"
}
}