-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.24 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
{
"name": "firebase-admin-cli",
"description": "Cli for firebase project",
"version": "1.2.7",
"author": "Siarhei Dudko <sergey@dudko.dev>",
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/dudko.dev"
},
{
"type": "paypal",
"url": "https://paypal.me/dudkodev"
},
{
"type": "patreon",
"url": "https://patreon.com/dudko_dev"
}
],
"license": "GPL-3.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"firebase-cli": "./bin/firebase-cli.js"
},
"scripts": {
"start": "node ./bin/firebase-cli.js",
"test": "node ./test/shell.test.js",
"build": "rm -rf lib && ./node_modules/.bin/tsc --declaration"
},
"repository": {
"type": "git",
"url": "github:siarheidudko/firebase-admin-cli"
},
"homepage": "https://www.npmjs.com/package/firebase-admin-cli",
"engines": {
"node": ">=12"
},
"keywords": [
"firebase",
"firestore",
"storage",
"auth",
"database",
"rtdb",
"authentication",
"google",
"gcp",
"cli",
"shell",
"admin",
"utility",
"tools"
],
"dependencies": {
"firebase-admin": "^13.0.2"
},
"devDependencies": {
"typescript": "^5.7.3"
}
}