-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
50
51
52
53
54
55
56
{
"name": "homebridge-globalcache-itach-ir",
"displayName": "Homebridge Global Caché iTach IR",
"version": "1.0.0",
"description": "Homebridge plugin for Global Caché iTach IR product family",
"license": "ISC",
"scripts": {
"lint": "prettier -w *.js && eslint --fix *.js"
},
"files": [
"accessories/accessory.js",
"accessories/index.js",
"accessories/light.js",
"accessories/outlet.js",
"accessories/switch.js",
"base/accessory.js",
"base/index.js",
"base/platform.js",
"helpers/accessoryCreator.js",
"helpers/catchDelayCancelError.js",
"helpers/delayForDuration.js",
"helpers/errors.js",
"helpers/getDevice.js",
"helpers/persistentState.js",
"helpers/sendData.js",
"helpers/serviceManager.js",
"index.js",
"platform.js"
],
"keywords": [
"homebridge-plugin",
"globalcache",
"itach"
],
"engines": {
"node": ">=7.6.0",
"homebridge": ">=1.4.1"
},
"author": {
"name": "jaysoffian"
},
"repository": {
"type": "git",
"url": "[email protected]:jaysoffian/homebridge-globalcache-itach-ir.git"
},
"dependencies": {
"await-semaphore": "^0.1.3",
"node-persist": ">=2.1.0 <3.0.0",
"promise-socket": "^7.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.40.0",
"prettier": "^2.7.1"
}
}