forked from homebridge-plugins/homebridge-camera-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"displayName": "Homebridge Camera FFmpeg",
"name": "homebridge-camera-ffmpeg",
"version": "2.0.0",
"description": "ffmpeg plugin for homebridge: https://github.com/homebridge/homebridge",
"main": "dist/index.js",
"license": "ISC",
"scripts": {
"clean": "rimraf ./dist ./coverage",
"build": "rimraf ./dist ./coverage && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest --coverage",
"watch:tests": "jest --watch",
"lint": "eslint **/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"postpublish": "npm run clean"
},
"keywords": [
"homebridge-plugin",
"camera",
"ffmpeg",
"homebridge"
],
"repository": {
"type": "git",
"url": "git://github.com/homebridge-plugins/homebridge-camera-ffmpeg.git"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-camera-ffmpeg/issues"
},
"engines": {
"node": ">=10",
"homebridge": ">=1.0.0"
},
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"jest.config.js",
"package-lock.json",
"package.json",
"tsconfig.json",
".prettierrc",
".eslintrc.js",
"dist/**/*",
"src/**/*",
"config.schema.json"
],
"devDependencies": {
"nodemon": ">=2.0.2",
"@types/ip": "^1.1.0",
"@types/jest": "^25.2.1",
"@types/node": "14.0.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"homebridge": "^1.0.4",
"jest": "^26.0.1",
"ts-jest": "^25.5.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"ffmpeg-for-homebridge": "0.0.6",
"ip": "^1.1.5",
"debug": "^4.1.1"
}
}