-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
{
"name": "@gogovega/node-red-contrib-firebase-realtime-database",
"version": "0.7.4",
"description": "Node-RED nodes to communicate with Google Firebase Realtime Databases",
"main": "build/nodes/load-config.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf build/lib build/**/*.js",
"lint": "eslint . --ext .ts",
"migrate": "bash scripts/migrate-script.sh",
"format": "prettier --write \"**/*.{md,ts}\"",
"test": "mocha './test/**/*_spec.js' --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GogoVega/node-red-contrib-firebase-realtime-database.git"
},
"keywords": [
"admin",
"database",
"firebase",
"node-red",
"realtime",
"rtdb"
],
"author": {
"name": "Gauthier Dandele",
"url": "https://github.com/GogoVega"
},
"contributors": [
{
"name": "Marcus Davies",
"email": "[email protected]",
"url": "https://github.com/marcus-j-davies"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GogoVega/node-red-contrib-firebase-realtime-database/issues"
},
"homepage": "https://github.com/GogoVega/node-red-contrib-firebase-realtime-database#readme",
"node-red": {
"nodes": {
"load-config": "build/nodes/load-config.js",
"firebase-in": "build/nodes/firebase-in.js",
"firebase-get": "build/nodes/firebase-get.js",
"firebase-out": "build/nodes/firebase-out.js",
"on-disconnect": "build/nodes/on-disconnect.js"
},
"version": ">=3"
},
"dependencies": {
"@gogovega/firebase-config-node": "^0.2.3"
},
"devDependencies": {
"@types/node-red": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"node-red": "^4.0.9",
"node-red-node-test-helper": "^0.3.4",
"prettier": "^3.5.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"files": [
"build/",
"examples/",
"resources/",
"scripts/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
]
}