mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
Notes: - TypeScript is updated from v4 to v5 - WebDriverIO is updated from v7 to v8 - prettier is kept in v2, in order to reduce style changes
31 lines
918 B
JSON
31 lines
918 B
JSON
{
|
|
"name": "socket.io-adapter",
|
|
"version": "2.5.5",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-adapter#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/socketio/socket.io.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/socketio/socket.io/issues"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"description": "default socket.io in-memory adapter",
|
|
"dependencies": {
|
|
"debug": "~4.3.4",
|
|
"ws": "~8.17.1"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"test": "npm run format:check && npm run compile && nyc mocha --require ts-node/register test/*.ts",
|
|
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"prepack": "npm run compile"
|
|
}
|
|
}
|