mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 23:48:02 -05:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@socket.io/cluster-adapter",
|
|
"version": "0.2.0",
|
|
"description": "The Socket.IO cluster adapter, allowing to broadcast events between several Socket.IO servers",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:socketio/socket.io-cluster-adapter.git"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run format:check && tsc && nyc mocha --require ts-node/register test/index.ts",
|
|
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"prepack": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"debug": "~4.3.1",
|
|
"socket.io-adapter": "~2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/expect.js": "^0.3.29",
|
|
"@types/mocha": "^8.2.1",
|
|
"@types/node": "^15.12.4",
|
|
"expect.js": "0.3.1",
|
|
"mocha": "^8.4.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.1.2",
|
|
"socket.io": "^4.5.0",
|
|
"socket.io-client": "^4.1.1",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.0.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"keywords": [
|
|
"socket.io",
|
|
"cluster",
|
|
"adapter"
|
|
]
|
|
}
|