This repository has been archived by the owner on Dec 15, 2024. It is now read-only.
forked from jloosli/node-firestore-import-export
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.7 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": "node-firestore-import-export-fix",
"version": "1.1.9",
"description": "Firestore data import and export",
"main": "./dist/lib/index.js",
"repository": "https://github.com/jloosli/node-firestore-import-export",
"homepage": "https://github.com/jloosli/node-firestore-import-export#readme",
"author": "Jared Loosli <[email protected]>",
"license": "MIT",
"keywords": [
"firebase",
"firestore",
"import",
"export",
"backup",
"restore"
],
"bugs": {
"url": "https://github.com/jloosli/node-firestore-import-export/issues"
},
"scripts": {
"tests2": "echo skipping tests",
"export": "node ./dist/bin/firestore-export.js",
"import": "node ./dist/bin/firestore-import.js",
"clear": "node ./dist/bin/firestore-clear.js",
"build": "npm run tests && gts clean && tsc",
"watch": "tsc -w",
"tests": "mocha -r ts-node/register tests/**/*.spec.ts",
"prepare": "npm run build",
"lint": "gts lint",
"fix": "gts fix",
"prepublishOnly": "npm run build"
},
"bin": {
"firestore-clear": "./dist/bin/firestore-clear.js",
"firestore-import": "./dist/bin/firestore-import.js",
"firestore-export": "./dist/bin/firestore-export.js"
},
"engines": {
"node": ">=16.0"
},
"preferGlobal": true,
"dependencies": {
"@google-cloud/firestore": "^6.7.0",
"colors": "^1.4.0",
"commander": "^11.0.0",
"enquirer": "^2.4.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/color": "^3.0.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.5",
"chai": "^4.3.8",
"firebase-mock": "^2.3.2",
"gts": "^5.0.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}