-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.12 KB
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
{
"name": "node-red-contrib-cron-plus",
"version": "2.2.4",
"description": "A flexible scheduler (cron, solar events, fixed dates) node for Node-RED with full dynamic control and time zone support",
"main": "cronplus.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\" --exit",
"lint": "eslint -c eslint.config.mjs",
"lint:fix": "eslint -c eslint.config.mjs --fix",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Steve-Mcl/node-red-contrib-cron-plus.git"
},
"keywords": [
"node-red",
"schedule",
"scheduler",
"timer",
"timer node",
"cron",
"cronplus",
"cron plus",
"cron-plus",
"crontab",
"sun",
"solar",
"solar event",
"solar events",
"suntime",
"sun time",
"sunrise",
"sunset"
],
"node-red": {
"version": ">=1.0.0",
"nodes": {
"cronplus": "cronplus.js"
}
},
"engines": {
"node": ">=8.0.0"
},
"author": {
"name": "Steve-Mcl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Steve-Mcl/node-red-contrib-cron-plus/issues"
},
"homepage": "https://github.com/Steve-Mcl/node-red-contrib-cron-plus#readme",
"dependencies": {
"coord-parser": "^1.0.0",
"cronosjs": "^1.7.1",
"cronstrue": "^3.13.0",
"suncalc2": "^1.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"neostandard": "^0.13.0",
"node-red": "^4.1.6",
"node-red-node-test-helper": "^0.3.6",
"should": "^13.2.3",
"sinon": "^21.0.1"
},
"maintainers": [
{
"name": "Steve-Mcl",
"email": "44235289+Steve-Mcl@users.noreply.github.com"
}
],
"overrides": {
"minimatch@>=9.0.0 <9.0.7": "9.0.9"
}
}