-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "@gogovega/node-red-contrib-cloud-firestore",
"version": "0.1.0",
"description": "Node-RED nodes to communicate with Google Cloud Firestore",
"main": "build/nodes/firestore-in.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf build/lib build/**/*.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{md,ts}\"",
"test": "mocha './test/**/*_spec.js' --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GogoVega/node-red-contrib-cloud-firestore.git"
},
"keywords": [
"admin",
"cloud",
"database",
"firebase",
"firestore",
"node-red"
],
"author": {
"name": "Gauthier Dandele",
"url": "https://github.com/GogoVega"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GogoVega/node-red-contrib-cloud-firestore/issues"
},
"homepage": "https://github.com/GogoVega/node-red-contrib-cloud-firestore#readme",
"node-red": {
"nodes": {
"firestore-out": "build/nodes/firestore-out.js",
"firestore-in": "build/nodes/firestore-in.js",
"firestore-get": "build/nodes/firestore-get.js"
},
"version": ">=3"
},
"dependencies": {
"@gogovega/firebase-config-node": "^0.2.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",
"node-red": "^4.0.5",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"files": [
"build/",
"examples/",
"resources/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
]
}