-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.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
46
47
48
{
"name": "homebridge-lutron-caseta",
"version": "1.0.0",
"description": "Homebridge plugin for integration with the Lutron Caseta Smart Bridge Pro",
"main": "lib/main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "babel src -d lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcoleman/homebridge-lutron-caseta.git"
},
"keywords": [
"lutron",
"caseta",
"homebridge",
"homebridge-plugin",
"home-automation",
"smartbridge"
],
"author": "James Coleman",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoleman/homebridge-lutron-caseta/issues"
},
"homepage": "https://github.com/jcoleman/homebridge-lutron-caseta#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"jest": "^23.0"
},
"engines": {
"homebridge": ">=0.4.44",
"node": ">=10.0.0"
},
"dependencies": {
"homebridge": ">=0.4.44"
},
"jest": {
"testRegex": "__tests__\\/.+_spec\\.jsx?$"
}
}