-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
92 lines (92 loc) · 2.14 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
85
86
87
88
89
90
91
92
{
"name": "node-red-contrib-ical-events",
"version": "2.2.5",
"description": "NodeRed calender event adapter",
"author": {
"name": "naimo84",
"email": "[email protected]"
},
"engines": {
"node": ">=12.0.0"
},
"contributors": [
{
"name": "naimo84",
"email": "[email protected]"
}
],
"homepage": "https://github.com/naimo84/node-red-contrib-ical-events",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/naimo84/node-red-contrib-ical-events/blob/master/LICENSE"
}
],
"keywords": [
"node-red",
"ical",
"calendar",
"caldav",
"icloud",
"events",
"google",
"outlook",
"apple",
"kalender",
"nodered",
"ics",
"Smart Home",
"home automation"
],
"node-red": {
"version": ">=1.0.0",
"nodes": {
"ical-config": "dist/ical-config.js",
"ical-events": "dist/ical-events.js",
"ical-sensor": "dist/ical-sensor.js",
"ical-upcoming": "dist/ical-upcoming.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/naimo84/node-red-contrib-ical-events"
},
"scripts": {
"release": "release-it",
"release-beta": "release-it -- --ci --increment=prerelease --preReleaseId=beta --github.preRelease",
"dev": "gulp develop",
"build": "gulp"
},
"dependencies": {
"cron": "^1.8.2",
"cron-parser": "^4.1.0",
"crypto-js": "^4.1.1",
"kalender-events": "^0.28.3",
"luxon": "^2.0.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"node-cache": "^5.1.2",
"piscina": "^4.1.0"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/crypto-js": "^4.0.2",
"@types/luxon": "^2.0.5",
"@types/node": "^16.11.1",
"@types/node-red": "^1.1.1",
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
"gulp-nodemon": "^2.5.0",
"gulp-replace": "^1.1.3",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"nodemon": "^2.0.14",
"release-it": "^14.11.8",
"typescript": "^4.4.4"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/NeumannBenjamin"
}
}