@iobroker/db-objects-jsonl 1.2.5 → 4.0.0-alpha.10-20211116-cb8ad50a
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 +5 -4
- package/lib/objects/objectsInMemJsonlDB.js +1 -2
- package/package.json +14 -10
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
# File
|
|
2
|
-
The Library contains the Database classes for File based objects database client and server.
|
|
1
|
+
# File DB JSONL objects classes for ioBroker
|
|
2
|
+
The Library contains the JSONL Database classes for File based objects database client and server.
|
|
3
3
|
|
|
4
4
|
## License
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
The MIT License (MIT)
|
|
6
|
+
|
|
7
|
+
Copyright 2018-2021 bluefox <dogafox@gmail.com>
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/db-objects-jsonl",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.10-20211116-cb8ad50a",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=
|
|
5
|
+
"node": ">=12.0.0"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@alcalzone/jsonl-db": "^
|
|
9
|
-
"@iobroker/db-base": "
|
|
10
|
-
"@iobroker/db-objects-file": "
|
|
11
|
-
"@iobroker/db-objects-redis": "
|
|
8
|
+
"@alcalzone/jsonl-db": "^2.2.0",
|
|
9
|
+
"@iobroker/db-base": "4.0.0-alpha.10-20211116-cb8ad50a",
|
|
10
|
+
"@iobroker/db-objects-file": "4.0.0-alpha.10-20211116-cb8ad50a",
|
|
11
|
+
"@iobroker/db-objects-redis": "4.0.0-alpha.10-20211116-cb8ad50a",
|
|
12
12
|
"deep-clone": "^3.0.3",
|
|
13
|
-
"fs-extra": "^
|
|
13
|
+
"fs-extra": "^10.0.0",
|
|
14
14
|
"node.extend": "^2.0.2"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"contributors": [
|
|
23
23
|
"bluefox <dogafox@gmail.com>",
|
|
24
24
|
"Apollon77 <iobroker@fischer-ka.de>",
|
|
25
|
-
"foxriver76"
|
|
25
|
+
"foxriver76 <moritz.heusinger@gmail.com>"
|
|
26
26
|
],
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "https://github.com/ioBroker/ioBroker.objects-
|
|
29
|
+
"url": "https://github.com/ioBroker/ioBroker.js-controller/packages/db-objects-jsonl"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {},
|
|
32
32
|
"main": "index.js",
|
|
@@ -34,5 +34,9 @@
|
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"
|
|
37
|
+
"files": [
|
|
38
|
+
"lib/",
|
|
39
|
+
"index.js"
|
|
40
|
+
],
|
|
41
|
+
"gitHead": "7e4b1475d5d59e3540a6111f69f8a3bc9536f751"
|
|
38
42
|
}
|