iobroker.ical 1.16.2 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -7
- package/admin/jsonConfig.json +39 -19
- package/io-package.json +29 -29
- package/main.js +590 -318
- package/package.json +15 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.ical",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.0",
|
|
4
4
|
"description": "Allows read information from google calender and from iCal.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
27
|
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.ical",
|
|
28
|
-
"readme": "https://github.com/iobroker-community-adapters/ioBroker.ical/blob/master/README.md",
|
|
29
28
|
"keywords": [
|
|
30
29
|
"ioBroker",
|
|
31
30
|
"calendar",
|
|
@@ -36,14 +35,14 @@
|
|
|
36
35
|
"url": "https://github.com/iobroker-community-adapters/ioBroker.ical"
|
|
37
36
|
},
|
|
38
37
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
38
|
+
"node": ">=20"
|
|
40
39
|
},
|
|
41
40
|
"dependencies": {
|
|
42
|
-
"@iobroker/adapter-core": "^3.2
|
|
43
|
-
"axios": "^1.
|
|
41
|
+
"@iobroker/adapter-core": "^3.3.2",
|
|
42
|
+
"axios": "^1.12.2",
|
|
44
43
|
"cloneextend": "^0.0.3",
|
|
45
44
|
"json-schema": "^0.4.0",
|
|
46
|
-
"node-ical": "^0.
|
|
45
|
+
"node-ical": "^0.22.0",
|
|
47
46
|
"rrule": "2.8.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
@@ -51,25 +50,25 @@
|
|
|
51
50
|
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
|
|
52
51
|
"@alcalzone/release-script-plugin-license": "^3.7.0",
|
|
53
52
|
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
|
|
54
|
-
"@iobroker/adapter-dev": "^1.
|
|
55
|
-
"@iobroker/
|
|
56
|
-
"@
|
|
53
|
+
"@iobroker/adapter-dev": "^1.5.0",
|
|
54
|
+
"@iobroker/eslint-config": "^2.2.0",
|
|
55
|
+
"@iobroker/testing": "^5.1.1",
|
|
56
|
+
"@types/chai": "^4.3.20",
|
|
57
57
|
"@types/chai-as-promised": "^7.1.8",
|
|
58
58
|
"@types/mocha": "^10.0.10",
|
|
59
|
-
"@types/node": "^
|
|
59
|
+
"@types/node": "^24.6.1",
|
|
60
60
|
"@types/proxyquire": "^1.3.31",
|
|
61
61
|
"@types/sinon": "^17.0.4",
|
|
62
62
|
"@types/sinon-chai": "^3.2.12",
|
|
63
63
|
"chai": "^4.5.0",
|
|
64
64
|
"chai-as-promised": "^7.1.2",
|
|
65
65
|
"chai-string": "^1.6.0",
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"mocha": "^10.8.2",
|
|
66
|
+
"luxon": "^3.7.2",
|
|
67
|
+
"mocha": "^11.7.3",
|
|
69
68
|
"proxyquire": "^2.1.3",
|
|
70
|
-
"sinon": "^
|
|
69
|
+
"sinon": "^21.0.0",
|
|
71
70
|
"sinon-chai": "^3.7.0",
|
|
72
|
-
"typescript": "~5.
|
|
71
|
+
"typescript": "~5.9.3"
|
|
73
72
|
},
|
|
74
73
|
"bugs": {
|
|
75
74
|
"url": "https://github.com/iobroker-community-adapters/ioBroker.ical/issues"
|
|
@@ -89,7 +88,7 @@
|
|
|
89
88
|
"test:package": "mocha test/package --exit",
|
|
90
89
|
"test:integration": "mocha test/integration --exit",
|
|
91
90
|
"test": "npm run test:js && npm run test:package",
|
|
92
|
-
"lint": "eslint",
|
|
91
|
+
"lint": "eslint -c eslint.config.mjs .",
|
|
93
92
|
"translate": "translate-adapter",
|
|
94
93
|
"release": "release-script",
|
|
95
94
|
"release-patch": "release-script patch --yes",
|