-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
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
42
43
44
45
46
47
{
"name": "node-red-contrib-tasmota",
"description": "Node-RED integration for Tasmota flashed devices",
"version": "1.0.0",
"license": "MIT",
"author": "Dave Andreoli",
"keywords": [
"node-red",
"tasmota",
"sonoff",
"home automation"
],
"homepage": "https://github.com/davemds/node-red-contrib-tasmota",
"bugs": {
"url": "https://github.com/davemds/node-red-contrib-tasmota/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davemds/node-red-contrib-tasmota.git"
},
"scripts": {
"test": "standard"
},
"node-red": {
"nodes": {
"tasmota-mqtt-broker": "nodes/mqtt_broker.js",
"Tasmota switch": "nodes/switch.js",
"Tasmota sensor": "nodes/sensor.js",
"Tasmota light": "nodes/light.js",
"Tasmota button": "nodes/button.js",
"Tasmota generic": "nodes/generic.js"
}
},
"dependencies": {
"mqtt": "4.3.7"
},
"devDependencies": {
"standard": "*"
},
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"nodes/*"
]
}