-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
66 lines (66 loc) · 1.87 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
63
64
65
66
{
"name": "node-firestore-import-export",
"version": "1.1.0",
"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": {
"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 && npm run clean && tsc",
"watch": "tsc -w",
"clean": "node ./src/bin/clean.js",
"tests": "mocha -r ts-node/register tests/**/*.spec.ts",
"snyk-protect": "snyk protect",
"prepare": "npm run build && npm run snyk-protect"
},
"bin": {
"firestore-clear": "./dist/bin/firestore-clear.js",
"firestore-import": "./dist/bin/firestore-import.js",
"firestore-export": "./dist/bin/firestore-export.js"
},
"engines": {
"node": ">=8.0"
},
"preferGlobal": true,
"dependencies": {
"@google-cloud/firestore": "^3.5.0",
"colors": "^1.3.2",
"commander": "^5.1.0",
"core-js": "^3.1.3",
"enquirer": "^2.3.5",
"firebase-admin": "^8.3.0",
"firebase-functions": "^3.2.0",
"load-json-file": "^6.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/color": "^3.0.0",
"@types/core-js": "^2.5.0",
"@types/mocha": "^7.0.1",
"@types/node": "^14.0.1",
"chai": "^4.1.2",
"del": "^5.0.0",
"firebase-mock": "^2.2.10",
"mocha": "^7.0.1",
"snyk": "^1.189.0",
"ts-node": "^8.0.2",
"typescript": "^3.1.6"
},
"snyk": true
}