forked from freakent/node-red-contrib-sunevents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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
{
"name": "node-red-contrib-sunevents",
"version": "3.0.3",
"description": "A node for node-red that generates events based on the position of the Sun at the appropriate time of day",
"keywords": [
"node-red",
"suncalc",
"sunrise",
"sunset",
"nadir"
],
"license": "Apache-2.0",
"author": {
"name": "Martin Jarvis",
"email": "[email protected]",
"url": "http://freakent.co.uk"
},
"homepage": "https://github.com/freakent/node-red-contrib-sunevents/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/freakent/node-red-contrib-sunevents.git"
},
"dependencies": {
"debug": "^3.2.6",
"luxon": "^1.25.0",
"suncalc": "^1.8.0",
"uuid": "^8.3.2"
},
"scripts": {
"test": "nodemon --exec jasmine"
},
"node-red": {
"nodes": {
"node-red-contrib-sunevents": "lib/sun-events-node.js"
}
},
"devDependencies": {
"jasmine": "^3.6.4",
"node-red": "^1.2.9",
"node-red-node-test-helper": "^0.2.7",
"nodemon": "^2.0.7",
"timezone-mock": "^1.0.17"
}
}