forked from jdomeij/node-red-contrib-node-lifx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "node-red-contrib-node-lifx",
"version": "0.10.2",
"description": "Control LIFX lights using Node-RED.",
"author": "jdomeij",
"maintainers": [
"Ristomatti Airo <[email protected]>"
],
"homepage": "https://github.com/ristomatti/node-red-contrib-node-lifx",
"repository": {
"type": "git",
"url": "https://github.com/ristomatti/node-red-contrib-node-lifx.git"
},
"bugs": {
"url": "https://github.com/ristomatti/node-red-contrib-node-lifx/issues"
},
"keywords": [
"node-red",
"node-red-contrib",
"contrib",
"lifx"
],
"node-red": {
"nodes": {
"node-lifx-out": "red/lifx-output.js",
"node-lifx-in": "red/lifx-input.js",
"node-lifx-server": "red/lifx-server.js"
}
},
"main": "lib/lifx-server.js",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"mocha": "^5.2.0"
},
"dependencies": {
"async": "^2.6.3",
"color-convert": "^1.9.2",
"color-space": "^1.16.0",
"color-temp": "0.0.2",
"enum": "^2.5.0",
"lifx-lan-client": "^1.0.3",
"lodash": "^4.17.15"
},
"scripts": {
"test": "mocha test"
}
}