forked from ba100/node-red-contrib-mqtt-connection-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (30 loc) · 781 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "node-red-contrib-mqtt-connection-check",
"version": "0.1.2",
"description": "A Node Red node that checks the connectivity with an MQTT broker. The check result is returned in msg.mqttCheck object.",
"main": "check_mqtt_connection.js",
"scripts": {},
"keywords": [
"mqtt",
"broker",
"node-red",
"mosquitto",
"connection",
"connectivity"
],
"author": "Bassel Saeed",
"license": "ISC",
"homepage": "https://github.com/ba100/node-red-contrib-mqtt-connection-check.git",
"repository": {
"type": "git",
"url": "https://github.com/ba100/node-red-contrib-mqtt-connection-check.git"
},
"node-red": {
"nodes": {
"mqtt-check": "check_mqtt_connection.js"
}
},
"dependencies": {
"mqtt": "^3.0.0"
}
}