nixfilter-mqtt
Version:
Filters for publishing and subscribing to MQTT topics, similar to "mosquitto_pub" and "mosquitto_sub"
37 lines (36 loc) • 878 B
JSON
{
"name": "nixfilter-mqtt",
"version": "0.0.1",
"description": "Filters for publishing and subscribing to MQTT topics, similar to \"mosquitto_pub\" and \"mosquitto_sub\"",
"main": "index.js",
"bin": {
"nixfilter-mqtt-publish": "./mqtt_publish.js",
"nixfilter-mqtt-subscribe": "./mqtt_subscribe.js"
},
"scripts": {
"compile": "coffee --bare --no-header --map --compile *.coffee",
"prepublish": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/oyooyo/nixfilter-mqtt.git"
},
"keywords": [
"Filter",
"MQTT",
"nixfilter",
"UNIX Filter"
],
"author": {
"name": "oyooyo"
},
"license": "ISC",
"devDependencies": {
"coffeescript": "^2.3.1"
},
"dependencies": {
"mqtt": "^2.18.8",
"nixfilter": "0.0.1"
}
}