-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"displayName": "Homebridge Shinobi",
"name": "homebridge-shinobi-official",
"version": "4.0.2",
"description": "A Homebridge plugin integrating Shinobi for motion detector cameras",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/vectronic/homebridge-shinobi.git"
},
"bugs": {
"url": "https://github.com/vectronic/homebridge-shinobi/issues"
},
"scripts": {
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"camera",
"motion",
"shinobi"
],
"author": "vectronic",
"license": "MIT",
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.1.0"
},
"dependencies": {
"express": "^4.18.1",
"ip": "^1.1.8",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"homebridge": "^1.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}