-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.12 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
{
"displayName": "Homebridge JVC Projector",
"name": "homebridge-jvc-projector",
"version": "1.3.1",
"description": "A Homebridge plugin providing standby control for JVC projectors over IP",
"main": "dist/accessory.js",
"repository": {
"type": "git",
"url": "git://github.com/vectronic/homebridge-jvc-projector.git"
},
"bugs": {
"url": "https://github.com/vectronic/homebridge-jvc-projector/issues"
},
"scripts": {
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc && cp src/*.py dist/",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"jvc",
"projector"
],
"author": "vectronic",
"license": "MIT",
"engines": {
"node": ">=14",
"homebridge": ">=1.1.0"
},
"dependencies": {
"async-mutex": "^0.2.6",
"await-sleep": "0.0.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"homebridge": "^1.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
}
}