first working or at least useful verion for rtdb

This commit is contained in:
Peter Svensson
2019-06-09 17:00:41 +02:00
parent e8067d6b08
commit 692929400e
12 changed files with 529 additions and 0 deletions

31
package.json Normal file
View File

@ -0,0 +1,31 @@
{
"name": "node-red-contrib-firebase-admin",
"version": "1.0.0",
"description": "A node-red module that wraps the server-side admin SDK of firebase, firestore, et.c.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psvensson/node-red-contrib-firebase-admin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/psvensson/node-red-contrib-firebase-admin/issues"
},
"homepage": "https://github.com/psvensson/node-red-contrib-firebase-admin#readme",
"node-red": {
"nodes": {
"rtdb-set": "rtdb-set.js",
"rtdb-push": "rtdb-push.js",
"rtdb-get": "rtdb-get.js",
"rtdb-query": "rtdb-query.js",
"firebase-config": "firebase-config.js"
}
},
"dependencies": {
"firebase-admin": "^8.0.0"
}
}