forked from Daniel-t/node-red-contrib-milight
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1011 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1011 Bytes
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-milight",
"version": "1.0.2",
"description": "A Node-RED node to control the MiLight family (limitless led, easybulb) of light.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm i -g",
"dev": "node-red -v"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenkeep/node-red-contrib-milight.git"
},
"contributors": [
{
"name": "Stephen Keep",
"email": "stephenkeep@gmail.com"
},
{
"name": "Bilal Al-Saeedi",
"email": "bilal_alsaidi@yahoo.com"
},
{
"name": "Marcus Wittig",
"email": "wittigmarcus@gmail.com"
}
],
"author": {
"name": "Stephen Keep"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"milight",
"limitless led",
"easybulb"
],
"node-red": {
"nodes": {
"MiLight": "MiLight.js"
}
},
"dependencies": {
"node-milight-promise": "^0.2.31",
"tinycolor2": "^1.4.1"
}
}