forked from socketio/socket.io-sticky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 993 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
{
"name": "@socket.io/sticky",
"version": "1.0.4",
"description": "An alternative to the sticky-session package (https://github.com/indutny/sticky-session)",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"format:check": "prettier --check \"index.js\" \"test/**/*.js\"",
"format:fix": "prettier --write \"index.js\" \"test/**/*.js\"",
"test": "npm run format:check && nyc mocha --timeout 5000"
},
"files": [
"index.js",
"index.d.ts"
],
"author": "Damien Arrachequesne <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/socketio/socket.io-sticky.git"
},
"homepage": "https://github.com/socketio/socket.io-sticky#readme",
"devDependencies": {
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0"
},
"keywords": [
"socket.io",
"websocket",
"cluster",
"node.js"
]
}