-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "firestore-backup",
"version": "2.4.0",
"description": "Google Firebase Firestore backup tool",
"homepage": "https://github.com/steadyequipment/node-firestore-backup",
"repository": "https://github.com/steadyequipment/node-firestore-backup.git",
"bugs": "https://github.com/steadyequipment/node-firestore-backup/issues",
"author": "Ian G <yo.ian.g@gmail.com>",
"license": "MIT",
"keywords": [
"firebase",
"firestore",
"backup",
"cli"
],
"main": "./dist/index.js",
"scripts": {
"bin": "./bin/firestore-backup.js",
"test": "rm -rf ./backup && ./bin/firestore-backup.js --accountCredentials $GOOGLE_APPLICATION_CREDENTIALS --backupPath ./backup --prettyPrint --requestCountLimit 20",
"pretest": "npm run build",
"clean": "rm -rf dist && mkdir dist",
"buildSource": "babel lib --out-dir dist",
"buildFlow": "flow-copy-source lib dist",
"build": "npm run buildSource; npm run buildFlow",
"prepublishOnly": "npm run clean && npm run build"
},
"bin": "./bin/firestore-backup.js",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"colors": "^1.2.3",
"commander": "^2.15.1",
"firebase-admin": "^7.1.0",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-eslint": "7",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "3.x",
"eslint-plugin-flowtype": "^2.46.3",
"flow-bin": "^0.61.0",
"flow-copy-source": "^1.2.1",
"standard": "^10.0.3"
}
}