iobroker.device-watcher 2.11.0 → 2.12.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/main.js CHANGED
@@ -7,7 +7,7 @@ const arrApart = require('./lib/arrApart.js'); // list of supported adapters
7
7
  const translations = require('./lib/translations.js');
8
8
  const cronParser = require('cron-parser');
9
9
 
10
- // indicator if the adapter is running or not (for intervall/shedule)
10
+ // indicator if the adapter is running (for intervall/shedule)
11
11
  let isUnloaded = false;
12
12
 
13
13
  class DeviceWatcher extends utils.Adapter {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "iobroker.device-watcher",
3
- "version": "2.11.0",
3
+ "version": "2.12.0",
4
4
  "description": "Watchdog for devices",
5
5
  "author": {
6
6
  "name": "Christian Behrends",
7
7
  "email": "mail@christian-behrends.de"
8
8
  },
9
- "homepage": "https://github.com/ciddi89/ioBroker.device-watcher",
9
+ "homepage": "https://github.com/iobroker-community-adapters/ioBroker.device-watcher",
10
10
  "license": "MIT",
11
11
  "keywords": [
12
12
  "device",
@@ -19,13 +19,13 @@
19
19
  ],
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/ciddi89/ioBroker.device-watcher"
22
+ "url": "https://github.com/iobroker-community-adapters/ioBroker.device-watcher"
23
23
  },
24
24
  "engines": {
25
- "node": ">= 16"
25
+ "node": ">=18"
26
26
  },
27
27
  "dependencies": {
28
- "@iobroker/adapter-core": "^3.0.4"
28
+ "@iobroker/adapter-core": "^3.0.6"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@alcalzone/release-script": "^3.7.0",
@@ -33,30 +33,30 @@
33
33
  "@alcalzone/release-script-plugin-license": "^3.7.0",
34
34
  "@alcalzone/release-script-plugin-manual-review": "^3.7.0",
35
35
  "@iobroker/adapter-dev": "^1.3.0",
36
- "@iobroker/testing": "^4.1.0",
36
+ "@iobroker/testing": "^4.1.1",
37
37
  "@types/chai": "^4.3.11",
38
38
  "@types/chai-as-promised": "^7.1.8",
39
39
  "@types/mocha": "^10.0.6",
40
- "@types/node": "^20.11.24",
41
- "@types/node-schedule": "^2.1.6",
40
+ "@types/node": "^20.12.4",
41
+ "@types/node-schedule": "^2.1.7",
42
42
  "@types/proxyquire": "^1.3.31",
43
43
  "@types/sinon": "^17.0.3",
44
44
  "@types/sinon-chai": "^3.2.12",
45
45
  "@typescript-eslint/eslint-plugin": "^7.0.0",
46
- "@typescript-eslint/parser": "^6.20.0",
46
+ "@typescript-eslint/parser": "^7.4.0",
47
47
  "chai": "^4.4.1",
48
48
  "chai-as-promised": "^7.1.1",
49
49
  "cron-parser": "^4.9.0",
50
50
  "eslint": "^8.57.0",
51
51
  "eslint-config-prettier": "^9.1.0",
52
52
  "eslint-plugin-prettier": "^5.1.3",
53
- "mocha": "^10.3.0",
53
+ "mocha": "^10.4.0",
54
54
  "node-schedule": "^2.1.1",
55
55
  "prettier": "^3.2.5",
56
56
  "proxyquire": "^2.1.3",
57
57
  "sinon": "^17.0.1",
58
58
  "sinon-chai": "^3.7.0",
59
- "typescript": "~5.3.3"
59
+ "typescript": "~5.4.4"
60
60
  },
61
61
  "main": "main.js",
62
62
  "files": [
@@ -78,7 +78,7 @@
78
78
  "release": "release-script"
79
79
  },
80
80
  "bugs": {
81
- "url": "https://github.com/ciddi89/ioBroker.device-watcher/issues"
81
+ "url": "https://github.com/iobroker-community-adapters/ioBroker.device-watcher/issues"
82
82
  },
83
83
  "readmeFilename": "README.md"
84
84
  }