-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 981 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
{
"name": "node-red-contrib-tuya-smart",
"version": "1.2.0",
"description": "Nodes to get data from tuya smart devices (like smart plugs, power strips, bulbs, ...).",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist pkg out",
"build": "tsc && cp lib/*.html dist/lib/",
"debug": "docker run -it -p 1880:1880 -v $(pwd)/dist/lib:/data/nodes nodered/node-red-docker"
},
"repository": {
"type": "git",
"url": "https://github.com/hgross/node-red-contrib-tuya-smart"
},
"keywords": [
"node-red",
"tuya",
"tuya-smart",
"powerplug",
"smart-home"
],
"author": "Henning Groß",
"license": "MIT",
"node-red": {
"nodes": {
"tuya-smart": "dist/lib/tuya-smart.js"
}
},
"devDependencies": {
"@types/node": "9.4.6",
"@types/node-red": "0.17.3",
"mkdirp": "0.5.1",
"tslint": "5.11.0",
"ts-node": "4.1.0",
"typescript": "2.6.2"
},
"dependencies": {
"tuyapi": "3.2.3"
}
}