forked from codediodeio/firestore-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 867 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
{
"name": "firestoremigrate",
"version": "1.0.0",
"description": "CLI tool for moving data in-n-out of Cloud Firestore",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/leaffm/firestore-migrator.git"
},
"scripts": {
"build": "tsc && npm link",
"migrate": "node dist/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/csvtojson": "^1.1.5",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.12",
"typescript": "^3.2.2"
},
"dependencies": {
"commander": "^2.19.0",
"core-js": "^2.6.0",
"csvtojson": "^2.0.8",
"excel-as-json": "^2.0.2",
"firebase-admin": "^6.3.0",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11"
},
"bin": {
"fire-migrate": "dist/index.js"
}
}