mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
874708dc0d
* Big Update Includes: - New lookup node to check state of a device - Fix dimming control for lights - Fix light group control - Set the node label to match the device name - The event now includes the text description of the light capability * Add extra check for empty results in discovery * Attempt to catch errors from wemo-lookup This is to catch errors when device is offline * Put request back Will look at making it all http.request later * Add more error handling and reporting * Try and not crash with subscriptions Failed subscriptions will try agian in 1 min * Fix some messages * Remove most of the console.logs * Last of console.logs
42 lines
884 B
JSON
42 lines
884 B
JSON
{
|
|
"name": "node-red-node-wemo",
|
|
"version": "0.2.1",
|
|
"description": "Input and Output nodes for Belkin WeMo devices",
|
|
"repository": "https://github.com/node-red/node-red-nodes/tree/master/hardware",
|
|
"main": "WeMoNG.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"node-red",
|
|
"wemo",
|
|
"belkin"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"email": "hardillb@gmail.com",
|
|
"name": "Benjamin Hardill",
|
|
"url": "http://www.hardill.me.uk/wordpress/"
|
|
},
|
|
{
|
|
"name": "Bart Butenaers"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"node-ssdp": "~3.2.5",
|
|
"request": "~2.74.0",
|
|
"xml2js": "~0.4.13",
|
|
"util": "~0.10.3",
|
|
"url": "~0.11.0",
|
|
"ip": "~1.0.1",
|
|
"body-parser": "~1.14.1",
|
|
"q": "~1.4.1"
|
|
},
|
|
"node-red": {
|
|
"nodes": {
|
|
"wemo": "WeMoNG.js"
|
|
}
|
|
}
|
|
}
|