mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-12 19:29:30 +08:00

* Adding an option to select log level Signed-off-by: Michael Finley <Michael.Finley@target.com> * making error default log level Signed-off-by: Michael Finley <Michael.Finley@target.com> * removing go-kit/levels and expanding levels wrapper Signed-off-by: Michael Finley <Michael.Finley@target.com> * refactoring test cases and using log.fatal Signed-off-by: Michael Finley <Michael.Finley@target.com> * logger.new no longer accpets enum and now accepts string for level Signed-off-by: Michael Finley <Michael.Finley@target.com> * level_test.go refactor to compare error Signed-off-by: Michael Finley <Michael.Finley@target.com> * Updating the ws README Signed-off-by: Michael Finley <Michael.Finley@target.com> * Adding log level for mqtt Adapter Signed-off-by: Michael Finley <Michael.Finley@target.com>
40 lines
987 B
JSON
40 lines
987 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",
|
|
"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"
|
|
}
|
|
}
|