-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "node-red-contrib-firebase-realtime-database",
"version": "0.1.3",
"description": "Communicate with google firebase realtime database. These nodes use the new firebase-admin API and service account json is used for authentication.",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namgk/node-red-contrib-firebase-realtime-database.git"
},
"keywords": [
"firebase",
"node",
"node-red"
],
"author": "Nam Giang",
"license": "ISC",
"bugs": {
"url": "https://github.com/namgk/node-red-contrib-firebase-realtime-database/issues"
},
"homepage": "https://github.com/namgk/node-red-contrib-firebase-realtime-database#readme",
"dependencies": {
"firebase-admin": "^6.0.0"
},
"node-red": {
"nodes": {
"firebaseIn": "src/firebaseIn.js",
"firebaseOut": "src/firebaseOut.js",
"firebaseAdmin": "src/firebaseAdmin.js"
}
},
"devDependencies": {
"mocha": "^5.0.4",
"chai": "^3.5.0"
}
}