forked from steadyequipment/node-firestore-backup
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
60 lines (60 loc) · 2.2 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
{
"name": "firestore-backup-restore",
"version": "1.3.1",
"description": "Google Firebase Firestore backup and restore tool",
"homepage": "https://github.com/willhlaw/node-firestore-backup-restore",
"repository": "https://github.com/willhlaw/node-firestore-backup-restore.git",
"bugs": "https://github.com/willhlaw/node-firestore-backup-restore/issues",
"author": "Will Lawrence <[email protected]>",
"license": "MIT",
"keywords": [
"firebase",
"firestore",
"backup",
"restore",
"cli"
],
"main": "./build/index.js",
"scripts": {
"start": "./bin/firestore-backup-restore.js",
"devStart": "babel-node index.js",
"devStart-debug": "babel-node --inspect-brk index.js",
"clean": "rm -rf build && mkdir build",
"build": "babel -d ./build index.js lib/*.js",
"test": "jest --watch --coverage",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand; echo '\n To debug, set debugger; statement, open chrome://inspect and click on Open Dedicated DevTools for Node and your running instance. \n - More info @ https://facebook.github.io/jest/docs/en/troubleshooting.html#tests-are-failing-and-you-don-t-know-why'",
"prepublishOnly": "npm run clean && npm run build"
},
"bin": "./bin/firestore-backup-restore.js",
"dependenciesComments": {
"@google-cloud/firestore": "FIXME - Can be removed once next version after 0.11.2 is released which exposes all the Firestore types so instanceof can be used"
},
"dependencies": {
"@google-cloud/firestore": "googleapis/nodejs-firestore",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-runtime": "^6.26.0",
"colors": "^1.1.2",
"commander": "^2.11.0",
"firebase-admin": "^5.4.3",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-eslint": "7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "3.x",
"eslint-plugin-flowtype": "^2.39.1",
"flow-bin": "^0.64.0",
"jest": "^22.1.4",
"standard": "^10.0.3"
},
"jest": {
"collectCoverageFrom": [
"*.js",
"lib/**/*.js"
]
}
}