-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 983 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "node-red-mqtt-sparkplug-wrapper",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/javier-fg/node-red-mqtt-sparkplug-wrapper"
},
"engines": {
"node": ">=12.0.0"
},
"description": "mqtt-sparkplug-wrapper is a set of Node-Red nodes that will enable Node-Red to communicate with a MQTT Server using the Sparkplug B protocol.",
"node-red": {
"version": ">=2.0.0",
"nodes": {
"mqtt-sparkplug-wrapper": "mqtt-sparkplug-wrapper.js"
}
},
"scripts": {
},
"keywords": [
"MQTT",
"Sparkplug",
"node-red"
],
"author": "Javier FG",
"license": "ISC",
"dependencies": {
"https-proxy-agent": "^5.0.0",
"is-utf8": "^0.2.1",
"mqtt": "^4.3.7",
"pako": "^2.0.4",
"protobufjs": "^6.11.2",
"sparkplug-payload": "^1.0.1"
},
"devDependencies": {
"mqtt": "^4.3.7",
"mocha": "^10.1.0",
"node-red": "^2.0.6",
"node-red-node-test-helper": "^0.2.7"
}
}