UNPKG

moleculer-io

Version:

An API GateWay service for Moleculer using Socket.IO

72 lines (71 loc) 1.66 kB
{ "name": "moleculer-io", "version": "2.2.0", "description": "An API GateWay service for Moleculer using Socket.IO", "main": "src/index.js", "directories": { "example": "examples" }, "scripts": { "dev": "nodemon examples/index.js", "dev:client": "iola io ws://localhost:3000", "ci": "jest --watch", "deps": "npm-check -u", "test": "jest --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/moleculerjs/moleculer-io.git" }, "keywords": [ "socket.io", "moleculer", "websocket", "microservice", "API Gateway" ], "author": "MoleculerJS", "license": "MIT", "dependencies": { "kleur": "^4.1.5", "lodash": "^4.17.21", "socket.io": "^4.5.1" }, "devDependencies": { "eslint": "^8.21.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^5.1.0", "eslint-plugin-security": "^1.5.0", "express": "^4.18.1", "jest": "^27.4.7", "jest-cli": "^27.4.7", "moleculer": "^0.14.22", "moleculer-repl": "^0.7.1", "moleculer-web": "^0.10.4", "nodemon": "^2.0.19", "prettier": "^2.7.1", "socket.io-client": "^4.5.1", "socket.io-redis": "^6.1.1", "winston": "^3.8.1" }, "peerDependencies": { "moleculer": "^0.13.0 || ^0.14.0" }, "engines": { "node": ">= 10.x.x" }, "jest": { "testEnvironment": "node", "rootDir": "./src", "roots": [ "../test" ], "coverageDirectory": "../coverage", "coveragePathIgnorePatterns": [ "/node_modules/", "/test/" ] } }