iobroker.zigbee 1.6.18 → 1.7.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 +68 -58
- package/admin/admin.js +2 -2
- package/admin/img/philips_ensis.png +0 -0
- package/admin/index_m.html +7 -7
- package/admin/vis-network.min.css +1 -1
- package/admin/vis-network.min.js +7 -6
- package/admin/words.js +8 -5
- package/io-package.json +79 -111
- package/lib/backup.js +62 -24
- package/lib/exposes.js +4 -2
- package/lib/statescontroller.js +35 -4
- package/lib/zbDeviceAvailability.js +0 -6
- package/main.js +2 -29
- package/package.json +77 -77
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "iobroker.zigbee",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"author": {
|
|
5
|
-
"name": "Kirov Ilya",
|
|
6
|
-
"email": "kirovilya@gmail.com"
|
|
7
|
-
},
|
|
8
|
-
"bugs": {
|
|
9
|
-
"url": "https://github.com/ioBroker/ioBroker.zigbee/issues"
|
|
10
|
-
},
|
|
11
|
-
"contributors": [
|
|
12
|
-
{
|
|
13
|
-
"name": "Kirov Ilya",
|
|
14
|
-
"email": "kirovilya@gmail.com"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"engines": {
|
|
18
|
-
"node": ">=10"
|
|
19
|
-
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"zigbee-herdsman": "0.14.
|
|
22
|
-
"zigbee-herdsman-converters": "14.0.
|
|
23
|
-
"@iobroker/adapter-core": "^2.4.0",
|
|
24
|
-
"tar": "^6.0.5",
|
|
25
|
-
"typescript": "^4.0.5"
|
|
26
|
-
},
|
|
27
|
-
"description": "Zigbee devices",
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@alcalzone/release-script": "~3.4.2",
|
|
30
|
-
"@iobroker/testing": "^2.5.4",
|
|
31
|
-
"axios": "^0.21.1",
|
|
32
|
-
"mixin-deep": "^1.3.2",
|
|
33
|
-
"eslint": "^7.18.0",
|
|
34
|
-
"eslint-config-google": "*",
|
|
35
|
-
"lint-diff": "*",
|
|
36
|
-
"chai": "^4.3.4",
|
|
37
|
-
"chai-as-promised": "^7.1.1",
|
|
38
|
-
"gulp": "^4.0.2",
|
|
39
|
-
"gulp-jsdoc3": "^3.0.0",
|
|
40
|
-
"gulp-replace": "^1.1.3",
|
|
41
|
-
"mocha": "^9.1.3"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://github.com/ioBroker/ioBroker.zigbee",
|
|
44
|
-
"keywords": [
|
|
45
|
-
"ioBroker",
|
|
46
|
-
"zigbee",
|
|
47
|
-
"cc2531",
|
|
48
|
-
"cc2530",
|
|
49
|
-
"cc2538",
|
|
50
|
-
"cc2652",
|
|
51
|
-
"deconz",
|
|
52
|
-
"conbee",
|
|
53
|
-
"raspbee",
|
|
54
|
-
"ezsp",
|
|
55
|
-
"efr32"
|
|
56
|
-
],
|
|
57
|
-
"license": "MIT",
|
|
58
|
-
"main": "main.js",
|
|
59
|
-
"optionalDependencies": {},
|
|
60
|
-
"readmeFilename": "README.md",
|
|
61
|
-
"repository": {
|
|
62
|
-
"type": "git",
|
|
63
|
-
"url": "git+https://github.com/ioBroker/ioBroker.zigbee.git"
|
|
64
|
-
},
|
|
65
|
-
"scripts": {
|
|
66
|
-
"test": "npm run test:package && npm run test:unit",
|
|
67
|
-
"docgen": "node support/docgen.js",
|
|
68
|
-
"test:package": "mocha test/package --exit",
|
|
69
|
-
"test:unit": "mocha test/unit --exit",
|
|
70
|
-
"test:integration": "mocha test/integration --exit",
|
|
71
|
-
"watch:parcel": "parcel admin/src/index.tsx -d admin/build --hmr-port 1235",
|
|
72
|
-
"test:js": "mocha --opts test/mocha.custom.opts",
|
|
73
|
-
"lint": "npm run lint:js",
|
|
74
|
-
"lint:js": "eslint",
|
|
75
|
-
"release": "release-script"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "iobroker.zigbee",
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"author": {
|
|
5
|
+
"name": "Kirov Ilya",
|
|
6
|
+
"email": "kirovilya@gmail.com"
|
|
7
|
+
},
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/ioBroker/ioBroker.zigbee/issues"
|
|
10
|
+
},
|
|
11
|
+
"contributors": [
|
|
12
|
+
{
|
|
13
|
+
"name": "Kirov Ilya",
|
|
14
|
+
"email": "kirovilya@gmail.com"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=10"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"zigbee-herdsman": "0.14.33",
|
|
22
|
+
"zigbee-herdsman-converters": "14.0.528",
|
|
23
|
+
"@iobroker/adapter-core": "^2.4.0",
|
|
24
|
+
"tar": "^6.0.5",
|
|
25
|
+
"typescript": "^4.0.5"
|
|
26
|
+
},
|
|
27
|
+
"description": "Zigbee devices",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@alcalzone/release-script": "~3.4.2",
|
|
30
|
+
"@iobroker/testing": "^2.5.4",
|
|
31
|
+
"axios": "^0.21.1",
|
|
32
|
+
"mixin-deep": "^1.3.2",
|
|
33
|
+
"eslint": "^7.18.0",
|
|
34
|
+
"eslint-config-google": "*",
|
|
35
|
+
"lint-diff": "*",
|
|
36
|
+
"chai": "^4.3.4",
|
|
37
|
+
"chai-as-promised": "^7.1.1",
|
|
38
|
+
"gulp": "^4.0.2",
|
|
39
|
+
"gulp-jsdoc3": "^3.0.0",
|
|
40
|
+
"gulp-replace": "^1.1.3",
|
|
41
|
+
"mocha": "^9.1.3"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/ioBroker/ioBroker.zigbee",
|
|
44
|
+
"keywords": [
|
|
45
|
+
"ioBroker",
|
|
46
|
+
"zigbee",
|
|
47
|
+
"cc2531",
|
|
48
|
+
"cc2530",
|
|
49
|
+
"cc2538",
|
|
50
|
+
"cc2652",
|
|
51
|
+
"deconz",
|
|
52
|
+
"conbee",
|
|
53
|
+
"raspbee",
|
|
54
|
+
"ezsp",
|
|
55
|
+
"efr32"
|
|
56
|
+
],
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"main": "main.js",
|
|
59
|
+
"optionalDependencies": {},
|
|
60
|
+
"readmeFilename": "README.md",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/ioBroker/ioBroker.zigbee.git"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"test": "npm run test:package && npm run test:unit",
|
|
67
|
+
"docgen": "node support/docgen.js",
|
|
68
|
+
"test:package": "mocha test/package --exit",
|
|
69
|
+
"test:unit": "mocha test/unit --exit",
|
|
70
|
+
"test:integration": "mocha test/integration --exit",
|
|
71
|
+
"watch:parcel": "parcel admin/src/index.tsx -d admin/build --hmr-port 1235",
|
|
72
|
+
"test:js": "mocha --opts test/mocha.custom.opts",
|
|
73
|
+
"lint": "npm run lint:js",
|
|
74
|
+
"lint:js": "eslint",
|
|
75
|
+
"release": "release-script"
|
|
76
|
+
}
|
|
77
|
+
}
|