-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.28 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
82
83
84
{
"name": "node-red-contrib-chronos",
"version": "1.25.6",
"description": "Time-based Node-RED scheduling, repeating, queueing, routing, filtering and manipulating nodes",
"author": {
"name": "Jens-Uwe Rossbach",
"email": "devel@jrossbach.de"
},
"license": "MIT",
"keywords": [
"node-red",
"schedule",
"scheduler",
"scheduling",
"time",
"timestamp",
"timespan",
"time-switch",
"time-filter",
"time-change",
"timer",
"timers",
"timing",
"delay",
"repeat",
"repetition",
"cron",
"crontab",
"sun",
"suntime",
"moon",
"moontime",
"sunrise",
"sunset",
"smart-home",
"home-automation"
],
"repository": {
"type": "git",
"url": "https://github.com/jensrossbach/node-red-contrib-chronos"
},
"homepage": "https://jensrossbach.github.io/node-red-contrib-chronos",
"bugs": "https://github.com/jensrossbach/node-red-contrib-chronos/issues",
"dependencies": {
"cronosjs": "^1.7.1",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"os-locale": "^5.0.0",
"suncalc": "^1.9.0"
},
"devDependencies": {
"eslint": "^9.6.0",
"jsonata": "^2.0.5",
"mocha": "^10.5.2",
"node-red": "^4.0.1",
"node-red-node-test-helper": "^0.3.4",
"nyc": "^17.0.0",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^18.0.0"
},
"main": "none",
"scripts": {
"lint": "npx eslint \"nodes/**/*.js\"",
"test": "mocha \"test/**/*_spec.js\"",
"coverage": "nyc --reporter=html npm run test"
},
"engines": {
"node": ">=12.0.0"
},
"node-red": {
"version": ">=1.0.0",
"nodes": {
"chronos-config": "nodes/config.js",
"chronos-scheduler": "nodes/scheduler.js",
"chronos-state": "nodes/state.js",
"chronos-repeat": "nodes/repeat.js",
"chronos-delay": "nodes/delay.js",
"chronos-switch": "nodes/switch.js",
"chronos-filter": "nodes/filter.js",
"chronos-change": "nodes/change.js"
}
}
}