-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
62 lines (62 loc) · 1.58 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
62
{
"name": "firestore-export-import",
"version": "1.4.0",
"description": "NPM package for backup and restore Firebase Firestore",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"readme.md",
"dist/*.*.*",
"dist/*.*"
],
"scripts": {
"watch": "tsc -w",
"test": "mocha",
"build": "tsc --skipLibCheck && npm run minify",
"minify": "jsmin -o dist/index.js dist/index.js && jsmin -o dist/import.js dist/import.js && jsmin -o dist/export.js dist/export.js && jsmin -o dist/helper.js dist/helper.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalenguyen/firestore-backup-restore.git"
},
"keywords": [
"firebase",
"firestore",
"backup",
"restore",
"import",
"export"
],
"author": "Dale Nguyen <[email protected]> (http://dalenguyen.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dalenguyen/firestore-backup-restore/issues"
},
"homepage": "https://github.com/dalenguyen/firestore-backup-restore#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"chai": "^4.3.7",
"jsmin": "^1.0.1",
"minimist": "1.2.8",
"mocha": "^10.2.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"firebase-admin": "^11.10.1",
"google-gax": "^4.0.3",
"uuid": "^9.0.0"
},
"resolutions": {
"minimist": "1.2.8"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7"
}
}