@quatrain/cloudwrapper-firebase 1.1.22 → 1.1.24
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 +4 -0
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -39,6 +39,10 @@ const firebaseEnv = new FirebaseWrapper({
|
|
|
39
39
|
CloudWrapper.addAdapter('firebase', firebaseEnv, true)
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
## Documentation
|
|
43
|
+
|
|
44
|
+
For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
|
|
45
|
+
|
|
42
46
|
## License
|
|
43
47
|
|
|
44
48
|
AGPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper-firebase",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.24",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Cloud Wrapper adapter for Firebase",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,14 +12,19 @@
|
|
|
12
12
|
"dist/",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Quatrain/Core.git",
|
|
18
|
+
"directory": "packages/cloudwrapper-firebase"
|
|
19
|
+
},
|
|
15
20
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
16
21
|
"peerDependencies": {
|
|
17
|
-
"@quatrain/core": "^1.1.
|
|
22
|
+
"@quatrain/core": "^1.1.50"
|
|
18
23
|
},
|
|
19
24
|
"dependencies": {
|
|
20
|
-
"@quatrain/backend": "^1.1.
|
|
21
|
-
"@quatrain/cloudwrapper": "^1.1.
|
|
22
|
-
"@quatrain/core": "^1.1.
|
|
25
|
+
"@quatrain/backend": "^1.1.36",
|
|
26
|
+
"@quatrain/cloudwrapper": "^1.1.26",
|
|
27
|
+
"@quatrain/core": "^1.1.50",
|
|
23
28
|
"firebase-admin": "^13.4.0",
|
|
24
29
|
"firebase-functions": "^6.4.0"
|
|
25
30
|
},
|