-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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
{
"displayName": "Homebridge JVC DLA Projector",
"name": "homebridge-jvc-dla",
"version": "1.2.0",
"description": "A Homebridge plugin to control JVC DLA projectors",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/jaysoffian/homebridge-jvc-dla.git"
},
"bugs": {
"url": "https://github.com/jaysoffian/homebridge-jvc-dla/issues"
},
"scripts": {
"lint": "prettier -w *.js && eslint --fix *.js"
},
"files": [
"config.schema.json",
"index.js",
"jvc.js",
"ping.js"
],
"keywords": [
"homebridge-plugin",
"jvc",
"dla"
],
"author": "jaysoffian",
"license": "MIT",
"engines": {
"homebridge": ">=1.6.0",
"node": ">=16.10.0"
},
"dependencies": {
"async-mutex": "^0.2.6",
"promise-socket": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^2.7.1"
}
}