-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
{
"name": "homebridge-doorbird",
"version": "1.0.1",
"displayName": "Homebridge Doorbird",
"description": "Nearly complete HomeKit integration for Doorbird doorbells.",
"author": "HJDHJD https://github.com/hjdhjd",
"contributors": {
"name": "Adrian Brown"
},
"homepage": "https://github.com/hjdhjd/homebridge-doorbird#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/homebridge-doorbird.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/homebridge-doorbird/issues"
},
"keywords": [
"camera",
"homebridge",
"homebridge-plugin",
"homebridge-doorbird",
"doorbird",
"doorbell"
],
"engines": {
"homebridge": ">=1.0.0"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"clean": "rimraf ./dist",
"lint": "eslint src/**.ts",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run build && npm link && nodemon"
},
"files": [
"LICENSE.md",
"README.md",
"config.schema.json",
"dist"
],
"main": "dist/index.js",
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"homebridge": "^1.2.3",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"dependencies": {
"abort-controller": "^3.0.0",
"daynight": "^2.0.10",
"execa": "^5.0.0",
"ffmpeg-for-homebridge": "0.0.9",
"get-port": "^5.1.1",
"ip": "^1.1.5",
"node-fetch": "^2.6.1"
}
}