forked from jnovack/homebridge-better-http-rgb
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "homebridge-http-rgb-push",
"version": "0.0.0-development",
"description": "Homebridge plugin to control a HTTP RGB device with push notification support (fork of homebridge-better-http-rgb).",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"author": {
"name": "Sander van Woensel",
"email": "[email protected]"
},
"contributors": [
{
"name": "Adrian Rudman"
},
{
"name": "Justin J. Novack"
}
],
"repository": {
"type": "git",
"url": "https://github.com/QuickSander/homebridge-http-rgb-push.git"
},
"preferGlobal": true,
"dependencies": {
"color-convert": "^2.0.0",
"request": "^2.88.0",
"homebridge-http-base": "^2.1.8"
},
"scripts": {
"lint": "eslint *.js",
"semantic-release": "semantic-release",
"test": "mocha test/basics.test.js"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"semantic-release": "^15.13.2",
"sinon": "^7.2.2",
"eslint": "^7.9.0"
}
}