-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "homebridge-unifi-protect-camera-motion",
"version": "0.6.5",
"description": "Unifi Protect cameras & motion sensors for Homebridge. AI enabled Motion detection for Unifi Protect cameras.",
"main": "src/index.js",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "tsc",
"compile": "tsc",
"homebridge": "tsc && homebridge -C -D -P . -U ./resources/test-config/",
"watch": "nodemon",
"test": "npm run compile && jest --config jest.config.js --collect-coverage && cd src/integration-tests && node detection-integration-test.js"
},
"config": {
"unsafe-perm": true
},
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/beele/homebridge-unifi-protect-camera-motion.git"
},
"bugs": {
"url": "http://github.com/beele/homebridge-unifi-protect-camera-motion/issues"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/MrBeele?locale.x=nl_NL"
},
"engines": {
"node": ">=16",
"homebridge": ">=1.4.0"
},
"dependencies": {
"canvas": "^2.9.1",
"execa": "^5.1.1",
"ffmpeg-for-homebridge": "^0.1.4",
"form-data": "^4.0.0",
"get-port": "^5.1.1",
"googleapis": "^98.0.0",
"googlephotos": "^0.3.5",
"mqtt": "^4.3.7",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.42",
"@types/node-fetch": "^2.6.1",
"homebridge": "^1.4.1",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"ts-jest": "^27.1.4",
"typescript": "^4.7.3"
}
}