-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "nodefire",
"version": "3.7.0",
"description": "A promise-centric Firebase library for NodeJS",
"main": "built/index.js",
"types": "built/index.d.ts",
"files": [
"/built"
],
"engines": {
"node": ">=8.0"
},
"scripts": {
"test": "node src/tests/runner.js",
"update": "yarn upgrade-interactive --latest",
"lint": "eslint src/*.ts",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/pkaminski/nodefire.git"
},
"keywords": [
"Firebase",
"api",
"promise"
],
"author": "Piotr Kaminski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkaminski/nodefire/issues"
},
"homepage": "https://github.com/pkaminski/nodefire",
"dependencies": {
"firebase-admin": "10.x || 11.x || 12.x",
"firebase-childrenkeys": "^2.3.5",
"firefight": "1.x",
"lodash": "^4.17.21",
"lru-cache": "6.x",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/lru-cache": "^7.10.10",
"@types/safe-timers": "^1.1.0",
"reviewable-configs": "Reviewable/reviewable-configs",
"typescript": "^5.3.3"
}
}