-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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": "homebridge-opc",
"version": "1.0.0",
"description": "Open Pixel Control (OPC) plugin for Homebridge",
"author": "Patrick Seal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/plasticrake/homebridge-opc.git"
},
"bugs": {
"url": "https://github.com/plasticrake/homebridge-opc/issues",
"email": "code@plasticrake.com"
},
"keywords": [
"homebridge-plugin",
"opc",
"open pixel control",
"openpixelcontrol",
"led",
"lighting",
"fadecandy"
],
"engines": {
"node": ">4.0.0",
"homebridge": ">=0.3.0"
},
"dependencies": {
"lodash": "^4.13.1",
"openpixelcontrol-stream": "^0.1.2",
"tinycolor2": "^1.3.0",
"tinygradient": "^0.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.12.0",
"mocha": "^2.5.3",
"rewire": "^2.5.1"
},
"scripts": {
"preversion": "npm test",
"test": "./node_modules/.bin/mocha",
"debug": "DEBUG=* homebridge --debug --plugin-path ."
}
}