forked from homebridge-plugins/homebridge-camera-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"displayName": "Homebridge Camera FFmpeg",
"name": "homebridge-camera-ffmpeg",
"version": "2.3.2",
"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\"",
"lint": "eslint **/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"postpublish": "npm run clean",
"watch": "npm run clean && tsc --watch"
},
"keywords": [
"homebridge-plugin",
"camera",
"ffmpeg",
"homebridge"
],
"repository": {
"type": "git",
"url": "git://github.com/Sunoo/homebridge-camera-ffmpeg.git"
},
"bugs": {
"url": "http://github.com/Sunoo/homebridge-camera-ffmpeg/issues"
},
"engines": {
"node": ">=10",
"homebridge": ">=1.0.0"
},
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json",
"dist/**/*",
"config.schema.json"
],
"devDependencies": {
"nodemon": ">=2.0.2",
"@types/ip": "^1.1.0",
"@types/node": "14.0.23",
"@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",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"ffmpeg-for-homebridge": "0.0.6",
"ip": "^1.1.5",
"mqtt": "^4.1.0",
"get-port": "^5.1.1",
"mailparser": "^0.5.3",
"smtp-server": "^1.7.1"
}
}