forked from niklaswall/node-red-contrib-light-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "node-red-contrib-light-scheduler",
"version": "0.0.15",
"author": "Niklas Wall",
"description": "Light Scheduler is a node-red node that provides a weekly schedule, and is mainly focused on controlling light in home automation scenarios.",
"license": "Apache-2.0",
"dependencies": {
"request": "^2.81.0",
"suncalc": "^1.8.0",
"util": "^0.10.3"
},
"scripts": {
"test": "jest"
},
"keywords": [
"node-red",
"light",
"schedule",
"scheduler",
"dusk",
"dawn",
"sunset",
"sunrise",
"timer"
],
"homepage": "https://faulty.cloud/projects/node-red-contrib-light-scheduler",
"bugs": {
"url": "https://github.com/niklaswall/node-red-contrib-light-scheduler/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/niklaswall/node-red-contrib-light-scheduler.git"
},
"node-red": {
"nodes": {
"light-scheduler": "light-scheduler.js",
"light-scheduler-filter": "light-scheduler-filter.js",
"light-scheduler-settings": "light-scheduler-settings.js"
}
},
"devDependencies": {
"jest": "^20.0.4",
"timekeeper": "^1.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
}
}