forked from colinbendell/homebridge-blink-for-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "homebridge-blink-for-home",
"displayName": "Blink for Home",
"private": false,
"version": "3.6.2",
"description": "Blink for Home Cameras for homebridge",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"homekit",
"blink for home",
"blink camera"
],
"main": "src/index.js",
"files": [
"src",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "[email protected]:colinbendell/homebridge-blink-for-home.git"
},
"engines": {
"node": ">=12.0.0",
"homebridge": ">=1.2.0"
},
"dependencies": {
"@homebridge/camera-utils": "^1.3.0",
"commander": "^6.2.0",
"fetch-h2": "^2.5.1",
"ffmpeg-for-homebridge": "0.0.9"
},
"devDependencies": {
"eslint": "^7.12.1",
"homebridge": "^1.2.3",
"homebridge-config-ui-x": "^4.32.0",
"nodemon": "^2.0.6"
},
"scripts": {
"lint": "eslint src/**.js --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "",
"prepublishOnly": "npm run build"
}
}