-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 913 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 913 Bytes
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
{
"name": "firebase-replace",
"version": "0.1.1",
"description": "NPM package for backup, restore, delete and replace Firebase",
"author": "Wataru Nagasawa <me@wata.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/wata/firebase-replace.git"
},
"license": "MIT",
"main": "lib/index.js",
"bin": {
"firebase-replace": "lib/index.js"
},
"scripts": {
"build": "tsc",
"local": "npm install && npm run build && npm i -g",
"publish-package": "npm install && npm run build && npm publish"
},
"dependencies": {
"chalk": "^5.4.1",
"child_process": "^1.0.2",
"commander": "^14.0.0",
"firebase-admin": "^13.4.0",
"firebase-tools": "^14.4.0",
"firestore-export-import": "^1.6.0"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"@types/node": "^22.15.19",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}