You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
798 B
30 lines
798 B
2 years ago
|
{
|
||
|
"name": "socket.io-adapter",
|
||
|
"version": "2.4.0",
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/socketio/socket.io-adapter.git"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist/"
|
||
|
],
|
||
|
"main": "./dist/index.js",
|
||
|
"types": "./dist/index.d.ts",
|
||
|
"description": "default socket.io in-memory adapter",
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^14.11.2",
|
||
|
"expect.js": "^0.3.1",
|
||
|
"mocha": "^8.1.3",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^1.19.1",
|
||
|
"typescript": "^4.0.3"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "npm run format:check && tsc && nyc mocha test/index.js",
|
||
|
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.js'",
|
||
|
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.js'",
|
||
|
"prepack": "tsc"
|
||
|
}
|
||
|
}
|