-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 904 Bytes
/
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
{
"name": "state-scoket.io",
"version": "0.0.1",
"description": "A simple state syncing middleware for Socket.io.",
"main": "index.js",
"homepage": "https://github.com/samson84/state-socket.io",
"bugs": {
"url": "https://github.com/samson84/state-socket.io/issues"
},
"private": false,
"deprecated": false,
"repository": {
"type": "git",
"url": "https://github.com/samson84/state-socket.io"
},
"author": "Daniel Hatas <samson84@gmail.com>",
"scripts": {
"test": "./node_modules/.bin/jest",
"test-watch": "npm test -- --watch",
"example": "node ./example/server.js"
},
"keywords": [
"socket.io",
"state",
"sync"
],
"license": "MIT",
"peerDependencies": {
"socket.io": "~4.0"
},
"devDependencies": {
"jest": "^26.4.0",
"socket.io": "^4.2.0"
},
"dependencies": {
"lodash": "^4.17.21",
"uuid": "^8.3.2"
}
}