uci-mqtt/package.json

47 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2017-01-11 15:11:34 -08:00
{
"name": "@uci/mqtt",
2020-07-26 15:43:23 -07:00
"version": "0.3.2",
"description": "mqtt client with UCI json packet payloads",
2018-04-05 15:50:39 -07:00
"main": "src",
2017-01-11 15:11:34 -08:00
"scripts": {
"test": "mocha -r esm test/*.test.js",
"client": "./node_modules/.bin/nodemon -r esm examples/client",
"server": "./node_modules/.bin/nodemon -r esm examples/server",
"client:dev": "UCI_ENV=dev npm run client",
"server:dev": "UCI_ENV=dev npm run server",
"client:debug": "UCI_LOG_LEVEL=debug npm run client:dev",
"server:debug": "UCI_LOG_LEVEL=debug npm run server:dev"
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": {
2020-07-26 15:43:23 -07:00
"@uci-utils/logger": "^0.0.18",
"better-try-catch": "0.6.2",
2020-07-26 15:43:23 -07:00
"is-plain-object": "^4.1.1",
"lodash.union": "^4.6.0",
"lodash.xor": "^4.5.0",
2020-07-26 15:43:23 -07:00
"mqtt": "^4.1.0",
"mqtt-match": "^2.0.3"
2017-01-11 15:11:34 -08:00
},
"devDependencies": {
"chai": "^4.2.0",
2020-07-26 15:43:23 -07:00
"delay": "^4.4.0",
"esm": "^3.2.25",
2020-07-26 15:43:23 -07:00
"mocha": "^8.0.1",
"nodemon": "^2.0.4"
2017-01-11 15:11:34 -08:00
}
}