1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-11 19:29:16 +08:00
Mainflux.mainflux/mqtt/package.json
Aleksandar Novaković cdd2eb4bc7 Fix MQTT adapter scaling issue (#526)
MQTT adapter wasn't scalable because mq emitter wasn't setup. Now
it's working as intended. You can create two different instances
and exchange messages between their clients.

Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com>
2018-12-27 10:44:57 +01:00

41 lines
1020 B
JSON

{
"name": "mqtt-adapter",
"description": "Mainflux is an open source MIT licensed IoT cloud written in NodeJS",
"main": "mqtt.js",
"repository": {
"type": "git",
"url": "https://github.com/Mainflux/mqtt-adapter"
},
"license": "Apache-2.0",
"scripts": {
"start": "node mqtt.js",
"test": "node_modules/.bin/mocha",
"lint": "eslint mqtt.js"
},
"dependencies": {
"2": "^1.0.2",
"aedes": "^0.35.2",
"aedes-logging": "^2.0.1",
"aedes-persistence-redis": "^5.1.0",
"atob": "^2.0.3",
"bunyan": "^1.5.1",
"grpc": "^1.11.3",
"lodash": "^4.17.10",
"mqemitter-redis": "^3.0.0",
"nats": "^0.6.8",
"protocol-buffers": "^4.0.4",
"request": "^2.81.0",
"toml": "^2.3.0",
"websocket-stream": "^5.1.2"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"jshint-stylish": "^2.0.1",
"mocha": "^5.2.0",
"supertest": "^3.1.0"
}
}