-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 936 Bytes
/
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
{
"name": "firestore-migrator",
"version": "1.0.0",
"description": "A tool for migrating Firestore collections between Firebase projects, supporting nested sub-collections.",
"main": "index.js",
"bin": {
"firestore-migrator": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Firestore",
"Firebase",
"Migration",
"Database",
"Firestore Migration"
],
"author": "Kai Firschau <kai@onino.io>",
"license": "ISC",
"dependencies": {
"firebase-admin": "^9.8.0",
"yargs": "^16.2.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kaifirschau/firestore-migrator.git"
},
"bugs": {
"url": "https://github.com/kaifirschau/firestore-migrator/issues"
},
"homepage": "https://github.com/kaifirschau/firestore-migrator#readme"
}