-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
{
"displayName": "Homebridge SMTP Motion",
"name": "homebridge-smtp-motion",
"version": "1.2.1",
"description": "Converts SMTP messages into HTTP motion alerts that homebridge-camera-ffmpeg understands",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/Sunoo/homebridge-smtp-motion.git"
},
"keywords": [
"homebridge-plugin",
"motion",
"smtp",
"email",
"camera"
],
"author": "David Maher",
"license": "BSD-2-Clause",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/sunookitsune"
},
{
"type": "paypal",
"url": "https://paypal.me/sunoo"
},
{
"type": "github",
"url": "https://github.com/Sunoo"
},
{
"type": "liberapay",
"url": "https://liberapay.com/Sunoo"
}
],
"bugs": {
"url": "https://github.com/Sunoo/homebridge-smtp-motion/issues"
},
"homepage": "https://github.com/Sunoo/homebridge-smtp-motion#readme",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"lint": "eslint src/*.ts --fix",
"lint-check": "eslint src/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint-check",
"postpublish": "npm run clean",
"watch": "npm run clean && tsc --watch"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/node": "^14.14.31",
"@types/smtp-server": "^3.5.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"homebridge": "^1.3.0",
"homebridge-camera-ffmpeg": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.5"
},
"files": [
"config.schema.json",
"dist/**/*",
"LICENSE",
"package.json",
"README.md"
],
"engines": {
"node": ">=10",
"homebridge": ">=1.0.0"
},
"dependencies": {
"bunyan": "^1.8.15",
"lodash.escaperegexp": "^4.1.2",
"smtp-server": "^3.8.0"
}
}