-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@gogovega/firebase-config-node",
"version": "0.2.0",
"description": "Node-RED config node to communicate with Google Firebase",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf build/lib build/{**/,}*.{js,d.ts}",
"format": "prettier --write \"**/*.{md,ts,html}\"",
"lint": "eslint . --ext .ts",
"prebuild": "npm run clean",
"test": "mocha './test/**/*_spec.js' --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GogoVega/firebase-config-node.git"
},
"keywords": [
"admin",
"config",
"database",
"firebase",
"firestore",
"node-red",
"realtime"
],
"author": {
"name": "Gauthier Dandele",
"url": "https://github.com/GogoVega"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/GogoVega/firebase-config-node/issues"
},
"homepage": "https://github.com/GogoVega/firebase-config-node#readme",
"node-red": {
"nodes": {
"firebase-config": "build/nodes/firebase-config.js"
},
"version": ">=3"
},
"dependencies": {
"@firebase/app": "0.10.15",
"@firebase/auth": "1.8.0",
"@firebase/database": "1.0.9",
"@firebase/firestore": "4.7.4",
"firebase-admin": "^12.7.0",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/node-red": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"mocha": "^10.7.3",
"node-red": "^4.0.5",
"node-red-node-test-helper": "^0.3.4",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"files": [
"build/",
"resources/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
],
"exports": {
".": "./build/index.js",
"./firestore": {
"types": "./build/lib/firebase/firestore/index.d.ts",
"require": "./build/lib/firebase/firestore/index.js"
},
"./rtdb": {
"types": "./build/lib/firebase/rtdb/index.d.ts",
"require": "./build/lib/firebase/rtdb/index.js"
},
"./types": {
"types": "./build/lib/nodes/types/index.d.ts",
"require": "./build/lib/nodes/types/index.js"
},
"./utils": {
"types": "./build/lib/firebase/utils/index.d.ts",
"require": "./build/lib/firebase/utils/index.js"
}
},
"typesVersions": {
"*": {
"firestore": [
"build/lib/firebase/firestore"
],
"rtdb": [
"build/lib/firebase/rtdb"
],
"types": [
"build/lib/nodes/types"
],
"utils": [
"build/lib/firebase/utils"
]
}
}
}