forked from felixls/node-red-contrib-tplink-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "node-red-contrib-tplink",
"version": "1.0.1",
"description": "A collection of Node-RED nodes for TP-Link smart-home devices.",
"homepage": "https://github.com/caseyjhol/node-red-contrib-tplink",
"author": "Dragoiu Robert <[email protected]> (https://facebook.com/dopepixels)",
"contributors": [
"Barney Rubble <[email protected]> (http://acloudhub.info/resume/)",
"Raj Amal <[email protected]> (https://www.learn2crack.com)",
"juggledad (https://github.com/juggledad)",
"Casey Holzer (https://github.com/caseyjhol)",
"hufftheweevil (https://github.com/hufftheweevil)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caseyjhol/node-red-contrib-tplink.git"
},
"node-red": {
"nodes": {
"kasa": "nodes/kasa.js"
}
},
"engines": {
"node": ">=10",
"npm": ">=3"
},
"dependencies": {
"moment": "^2.20.1",
"numeral": "^2.0.6",
"tplink-smarthome-api": "^3.0.0-beta"
},
"files": [
"examples/",
"LICENSE",
"README.md",
"CHANGELOG.md",
".npmignore",
"package.json",
"nodes/icons/",
"nodes/kasa.js",
"nodes/kasa.html"
],
"keywords": [
"node-red",
"tplink",
"tp-link",
"kasa",
"iot",
"hs100",
"hs105",
"hs107",
"hs110",
"hs200",
"hs220",
"hs300",
"kp303",
"kp400",
"lb100",
"lb110",
"lb120",
"lb130",
"lb200",
"lb230",
"home",
"smart",
"smartplug",
"smartswitch",
"smartbulb"
],
"bugs": {
"url": "https://github.com/caseyjhol/node-red-contrib-tplink/issues"
}
}