uci-mqtt/package.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2017-01-11 15:11:34 -08:00
{
"name": "@uci/mqtt",
"version": "0.1.0",
"description": "mqtt client with json payloads and mqtt custom broker",
2018-04-05 15:50:39 -07:00
"main": "src",
2017-01-11 15:11:34 -08:00
"scripts": {
2018-05-16 07:20:33 -07:00
"testw": "mocha -r esm test/*.test.mjs --watch --recurse --watch-extensions mjs",
"test": "mocha -r esm test/*.test.mjs",
"testci": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec --recursive && codecov || true",
2018-05-16 07:20:33 -07:00
"example": "node -r esm example/example",
"dev": "./node_modules/.bin/nodemon -r esm-e mjs example/example"
2017-01-11 15:11:34 -08:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/uci-changeme.git"
2017-01-11 15:11:34 -08:00
},
"keywords": [
"node.js",
"I2C",
"raspberryPi"
2017-01-11 15:11:34 -08:00
],
"bugs": {
"url": "https://github.com/uCOMmandIt/uci-changeme/issues"
2017-01-11 15:11:34 -08:00
},
"homepage": "https://github.com/uCOMmandIt/uci-changeme#readme",
2017-01-11 15:11:34 -08:00
"dependencies": {
2018-05-16 07:20:33 -07:00
"@uci/logger": "^0.0.3",
"async-mqtt": "^1.0.1",
"better-try-catch": "^0.6.2",
"is-plain-object": "^2.0.4",
"lodash.merge": "^4.6.1",
"lodash.union": "^4.6.0",
"lodash.xor": "^4.5.0"
2017-01-11 15:11:34 -08:00
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.0",
2018-05-16 07:20:33 -07:00
"esm": "^3.0.21",
2017-01-11 15:11:34 -08:00
"istanbul": "^0.4.5",
2018-05-16 07:20:33 -07:00
"mocha": "^4.0.1",
"nodemon": "^1.14.3"
2017-01-11 15:11:34 -08:00
}
}