generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2 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
{
"private": false,
"displayName": "Homebridge Cron Scheduler",
"name": "homebridge-cron-scheduler",
"version": "1.3.1",
"description": "Cron Scheduler plugin for Homebridge, which allows scheduling of triggers using cron expressions.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/uamanager/homebridge-cron-scheduler.git"
},
"author": {
"name": "uamanager",
"email": "[email protected]",
"url": "https://github.com/uamanager"
},
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/uamanager/"
}
],
"bugs": {
"url": "https://github.com/uamanager/homebridge-cron-scheduler/issues"
},
"engines": {
"node": ">=16",
"homebridge": ">=1.6.1"
},
"main": "dist/index.js",
"files": [
"config.schema.json",
"dist/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"prebuild": "rm -rf ./dist",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push && git push --tags",
"release": "npm run lint && npm run build && standard-version -a && git push --follow-tags origin master && yarn publish"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"cron",
"cron-expression",
"cronjob",
"homekit",
"cron-scheduler",
"timer",
"homekit",
"home-automation",
"homebridge-automation",
"scheduler",
"scenarios",
"automation"
],
"dependencies": {
"croner": "7.0.1",
"homebridge-util-accessory-manager": "0.0.13"
},
"devDependencies": {
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.1",
"homebridge": "1.6.1",
"nodemon": "3.1.7",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"resolutions": {
"minimist": "1.2.8"
}
}