forked from jdomeij/node-red-contrib-node-hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "node-red-contrib-node-hue",
"version": "0.9.5",
"description": "Control Philips HUE lights using Node-RED.",
"author": "jdomeij",
"homepage": "https://github.com/jdomeij/node-red-contrib-node-hue",
"repository": {
"type": "git",
"url": "https://github.com/jdomeij/node-red-contrib-node-hue.git"
},
"bugs": {
"url": "https://github.com/jdomeij/node-red-contrib-node-hue/issues"
},
"keywords": [
"node-red",
"node-red-contrib",
"contrib",
"hue"
],
"node-red": {
"nodes": {
"node-hue-out": "red/hue-output.js",
"node-hue-in": "red/hue-input.js",
"node-hue-bridge": "red/hue-bridge.js"
}
},
"main": "lib/hue-server.js",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.1.0",
"chai-spies": "^1.0.0",
"mocha": "^5.2.0"
},
"dependencies": {
"color-convert": "^1.9.2",
"color-space": "^1.16.0",
"color-temp": "0.0.2",
"enum": "^2.5.0",
"lodash": "^4.17.10",
"node-hue-api": "^2.4.1"
},
"scripts": {
"test": "mocha test"
}
}