-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.13 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.13 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
{
"name": "node-red-contrib-suncron",
"version": "1.6.0",
"description": "A Node-RED node that triggers configurable outgoing messages based on the position of the sun",
"main": "index.js",
"author": "Cornelius Suermann",
"license": "MIT",
"keywords": [
"node-red",
"smart home",
"sun",
"sunset",
"sunrise",
"dusk",
"noon",
"cron",
"timer",
"timer clock"
],
"repository": {
"type": "git",
"url": "https://github.com/csuermann/node-red-contrib-suncron"
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"suncron": "suncron.js"
}
},
"dependencies": {
"cron": "^4.3.3",
"dayjs": "^1.11.13",
"suncalc": "^1.9.0"
},
"devDependencies": {
"eslint": "^9.18.0",
"mocha": "^11.0.1",
"node-red": "^4.0.8",
"node-red-node-test-helper": "^0.3.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"release": {
"branches": [
"master",
"next"
]
},
"engines": {
"node": ">=16.0.0"
}
}