UNPKG

extensor

Version:

Extra funcionalities to socket.io

83 lines (82 loc) 2.03 kB
{ "name": "extensor", "version": "1.0.7", "description": "Extra funcionalities to socket.io", "main": "dist/index.js", "module": "dist/extensor.esm.js", "typings": "dist/index.d.ts", "files": [ "dist/" ], "scripts": { "benchmarks": "ts-node --skip-project ./benchmarks", "build": "tsdx build", "test": "tsdx test --testTimeout 2000 --forceExit", "test:watch": "tsdx test --watch", "test:coverage": "tsdx test --coverage --testTimeout 2000 --forceExit", "report-coverage": "npm run test:coverage && codecov", "lint": "tsdx lint ./src/**/*.ts --fix", "release": "npm run build && standard-version", "publish": "git push --follow-tags origin master" }, "repository": { "type": "git", "url": "https://github.com/GX-mobgeek/extensor.git" }, "keywords": [ "socket.io", "extensor", "authorization", "block", "multiple", "connections", "packet", "size", "minifier", "schemapack" ], "author": "Fernando Costa", "license": "MIT", "dependencies": { "debug": "^4.1.1", "eventemitter3": "^4.0.7", "schemapack": "^1.4.2" }, "devDependencies": { "@types/debug": "^4.1.5", "@types/expect": "^24.3.0", "@types/ioredis": "^4.17.4", "@types/jest": "^26.0.13", "@types/node": "^14.10.1", "@types/redis": "^2.8.27", "@types/socket.io": "^2.1.11", "@types/socket.io-client": "^1.4.33", "benchmark-util": "^1.0.1", "husky": "^4.3.0", "ioredis": "^4.17.3", "ioredis-mock": "^4.21.3", "lint-staged": "^10.3.0", "redis-mock": "^0.51.0", "socket.io": "^2.3.0", "socket.io-client": "^2.3.0", "socket.io-msgpack-parser": "^2.2.0", "standard-version": "^9.0.0", "ts-node": "^9.0.0", "tsdx": "^0.13.3", "typescript": "^4.0.2" }, "publishConfig": { "access": "public" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "npm run lint --fix", "git add" ] } }