forked from Brandawg93/homebridge-nest-cam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"displayName": "Homebridge Nest Cam",
"name": "homebridge-nest-cam",
"version": "7.5.1-test.2",
"description": "Nest cam plugin for homebridge: https://homebridge.io/",
"main": "dist/index.js",
"license": "GPL-3.0",
"author": "Brandawg93",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Brandawg93"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?business=CEYYGVB7ZZ764&item_name=homebridge-nest-cam"
}
],
"bin": {
"homebridge-nest-cam": "dist/cli.js"
},
"scripts": {
"clean": "npm run rimraf ./dist ./coverage",
"build": "npm run clean && tsc && ng build",
"deploy": "./dev/deploy.sh",
"packlist": "npm pack --dry-run && rm *.tgz",
"format": "prettier --write src/**/*.ts",
"test": "jest --coverage",
"watch:tests": "jest --watch",
"lint": "eslint src/**/*.ts --fix",
"prepare": "npm run clean && tsc && ng build --configuration production",
"prepublishOnly": "npm run lint",
"postpublish": "npm run clean",
"ng-start": "ng serve",
"ng-build": "ng build",
"rimraf": "./node_modules/rimraf/bin.js"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"nest",
"nest-cam",
"doorbell",
"camera",
"smart"
],
"repository": "github:Brandawg93/homebridge-nest-cam",
"bugs": {
"url": "https://github.com/Brandawg93/homebridge-nest-cam/issues"
},
"engines": {
"node": ">=10",
"homebridge": ">=1.1.3"
},
"files": [
"LICENSE",
"dist/**/*",
"images/offline.jpg",
"config.schema.json"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"axios": "^0.24.0",
"base64url": "^3.0.1",
"execa": "^5.1.1",
"ffmpeg-for-homebridge": "^0.0.9",
"get-port": "^5.1.1",
"pbf": "^3.2.1",
"ws": "^7.5.6"
},
"devDependencies": {
"@angular-builders/jest": "~13.0.2",
"@angular-devkit/build-angular": "~13.1.2",
"@angular/animations": "~13.1.1",
"@angular/cli": "~13.1.2",
"@angular/common": "~13.1.1",
"@angular/compiler": "~13.1.1",
"@angular/compiler-cli": "~13.1.1",
"@angular/core": "~13.1.1",
"@angular/forms": "~13.1.1",
"@angular/platform-browser": "~13.1.1",
"@angular/platform-browser-dynamic": "~13.1.1",
"@angular/router": "~13.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/pbf": "^3.0.2",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"homebridge": "^1.3.9",
"jest": "^27.4.7",
"jest-preset-angular": "^11.0.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rxjs": "~7.5.1",
"ts-jest": "^27.1.2",
"ts-node": "~10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"zone.js": "~0.11.4"
}
}