-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
95 lines (95 loc) · 2.42 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
{
"name": "homebridge-blink-for-home",
"displayName": "Blink for Home",
"private": false,
"version": "3.9.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",
"bin",
"!**/*.test.js",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "[email protected]:colinbendell/homebridge-blink-for-home.git"
},
"engines": {
"node": ">=16",
"homebridge": ">=1.4.0"
},
"dependencies": {
"@adobe/fetch": "^3.2.1",
"@homebridge/camera-utils": "^2.1.0",
"@homebridge/plugin-ui-utils": "^0.0.19",
"commander": "^9.1.0",
"ffmpeg-for-homebridge": "^0.1.0"
},
"devDependencies": {
"@jest/globals": "^29",
"eslint": "^8.13.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^27",
"hap-nodejs": "^0.10.0",
"homebridge": "^1.4.0",
"homebridge-config-ui-x": "^4.42.0",
"jest": "^29"
},
"scripts": {
"lint": "eslint src/**.js --max-warnings=0",
"watch": "npm run build && npm link",
"build": "",
"prepublishOnly": "npm run build",
"test": "jest && npm run lint"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"es6": true,
"node": true,
"jest/globals": true
},
"rules": {
"indent": [
"error",
4
],
"brace-style": [
"error",
"stroustrup"
],
"max-len": [
"error",
125
],
"require-jsdoc": "off",
"valid-jsdoc": "off",
"arrow-parens": [
"error",
"as-needed"
],
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
},
"plugins": [
"jest"
]
}
}