-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "nodefire",
"version": "4.1.0",
"description": "A promise-centric Firebase library for NodeJS",
"main": "built/index.js",
"types": "built/index.d.ts",
"files": [
"/built"
],
"engines": {
"node": ">=8.0"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"update": "yarn upgrade-interactive --latest",
"lint": "eslint src/*.ts",
"build": "tsc",
"prepublish": "tsc"
},
"repository": "https://github.com/Reviewable/nodefire",
"keywords": [
"Firebase",
"api",
"promise"
],
"author": "Piotr Kaminski <piotr@ideanest.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reviewable/nodefire/issues"
},
"homepage": "https://github.com/Reviewable/nodefire",
"dependencies": {
"firebase-admin": "10.x || 11.x || 12.x || 13.x",
"firebase-childrenkeys": "^2.3.5",
"firefight": "1.x",
"lodash": "^4.17.21",
"lru-cache": "11.x",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/safe-timers": "^1.1.0",
"reviewable-configs": "Reviewable/reviewable-configs",
"typescript": "^5.3.3"
}
}