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.12",
"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": {
"@uci-utils/logger": "^0.0.15",
"better-try-catch": "0.6.2",
"is-plain-object": "^3.0.0",
"lodash.union": "^4.6.0",
"lodash.xor": "^4.5.0",
"mqtt": "^3.0.0",
"mqtt-match": "^2.0.3"
2017-01-11 15:11:34 -08:00
},
"devDependencies": {
"chai": "^4.2.0",
"delay": "^4.3.0",
"esm": "^3.2.25",
"mocha": "^6.2.0",
"nodemon": "^1.19.1"
2017-01-11 15:11:34 -08:00
}
}