{
  "name": "@firebase/firestore",
  "version": "2.0.5",
  "engines": {
    "node": "^8.13.0 || >=10.10.0"
  },
  "description": "The Cloud Firestore component of the Firebase JS SDK.",
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  "scripts": {
    "api-report:exp": "(cd exp; api-extractor run --local --verbose) && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ../../repo-scripts/prune-dts/prune-dts.ts --input dist/exp/private.d.ts --output dist/exp/index.d.ts",
    "api-report:lite": "(cd lite; api-extractor run --local --verbose) && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ../../repo-scripts/prune-dts/prune-dts.ts --input dist/lite/private.d.ts --output dist/lite/index.d.ts",
    "bundle": "rollup -c",
    "prebuild": "tsc --emitDeclarationOnly --declaration -p tsconfig.json; run-p api-report:exp api-report:lite",
    "build": "run-p 'bundle rollup.config.browser.js' 'bundle rollup.config.browser.memory.js' 'bundle rollup.config.node.js' 'bundle rollup.config.node.memory.js' 'bundle rollup.config.rn.js' 'bundle rollup.config.rn.memory.js' build:lite build:exp",
    "build:scripts": "tsc -moduleResolution node --module commonjs scripts/*.ts && ls scripts/*.js | xargs -I % sh -c 'terser %  -o %'",
    "prebuild:release": "yarn prebuild",
    "build:release": "run-p 'bundle rollup.config.browser.js' 'bundle rollup.config.browser.memory.js' 'bundle rollup.config.node.js' 'bundle rollup.config.node.memory.js' 'bundle rollup.config.rn.js' 'bundle rollup.config.rn.memory.js'",
    "build:deps": "lerna run --scope @firebase/firestore --include-dependencies build",
    "build:console": "node tools/console.build.js",
    "build:exp": "rollup -c rollup.config.exp.js",
    "build:lite": "rollup -c rollup.config.lite.js",
    "build:exp:release": "yarn build:exp && yarn build:lite",
    "postbuild:exp:release": "node ../../scripts/exp/remove-exp.js dist/exp/index.d.ts && node ../../scripts/exp/remove-exp.js dist/lite/index.d.ts",
    "predev": "yarn prebuild",
    "dev": "rollup -c -w",
    "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
    "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
    "prettier": "prettier --write '*.js' '*.ts' '@(lite|exp|src|test)/**/*.ts'",
    "pregendeps:exp": "yarn api-report:exp && node scripts/build-bundle.js --input ./exp/index.ts --output ./dist/exp/tmp.js",
    "gendeps:exp": "../../scripts/exp/extract-deps.sh --types ./dist/exp/index.d.ts --bundle ./dist/exp/tmp.js --output ./exp/dependencies.json",
    "pregendeps:lite": "yarn api-report:lite && node scripts/build-bundle.js --input ./lite/index.ts --output ./dist/lite/tmp.js",
    "gendeps:lite": "../../scripts/exp/extract-deps.sh --types ./dist/lite/index.d.ts --bundle ./dist/lite/tmp.js --output ./lite/dependencies.json",
    "test:lite": "node ./scripts/run-tests.js --emulator --platform node_lite --main=lite/index.ts 'lite/test/**/*.test.ts'",
    "test:lite:prod": "node ./scripts/run-tests.js --platform node_lite --main=lite/index.ts 'lite/test/**/*.test.ts'",
    "test:lite:browser": "karma start --single-run --lite",
    "test:lite:browser:debug": "karma start --browsers=Chrome --lite --auto-watch",
    "test": "run-s lint test:all",
    "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
    "test:all": "run-p test:browser test:lite:browser test:travis test:minified",
    "test:browser": "karma start --single-run",
    "test:browser:debug": "karma start --browsers=Chrome --auto-watch",
    "test:node": "node ./scripts/run-tests.js  --main=index.node.ts  --emulator 'test/{,!(browser)/**/}*.test.ts'",
    "test:node:prod": "node ./scripts/run-tests.js --main=index.node.ts 'test/{,!(browser)/**/}*.test.ts'",
    "test:node:persistence": "node ./scripts/run-tests.js  --main=index.node.ts --persistence --emulator 'test/{,!(browser)/**/}*.test.ts'",
    "test:node:persistence:prod": "node ./scripts/run-tests.js --main=index.node.ts --persistence 'test/{,!(browser)/**/}*.test.ts'",
    "test:travis": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/firestore-test-runner.ts",
    "test:minified": "(cd ../../integration/firestore ; yarn test)",
    "prepare": "yarn build:release",
    "api-report": "rm -rf temp && api-extractor run --local --verbose",
    "predoc": "node ../../scripts/exp/remove-exp.js temp",
    "doc": "api-documenter markdown --input temp --output docs"
  },
  "main": "dist/index.node.cjs.js",
  "main-esm2017": "dist/index.node.esm2017.js",
  "react-native": "dist/index.rn.esm2017.js",
  "browser": "dist/index.esm.js",
  "module": "dist/index.esm.js",
  "esm2017": "dist/index.esm2017.js",
  "license": "Apache-2.0",
  "files": [
    "dist",
    "memory/package.json"
  ],
  "dependencies": {
    "@firebase/component": "0.1.21",
    "@firebase/firestore-types": "2.0.0",
    "@firebase/logger": "0.2.6",
    "@firebase/util": "0.3.4",
    "@firebase/webchannel-wrapper": "0.4.1",
    "@grpc/grpc-js": "^1.0.0",
    "@grpc/proto-loader": "^0.5.0",
    "node-fetch": "2.6.1",
    "tslib": "^1.11.1"
  },
  "peerDependencies": {
    "@firebase/app": "0.x",
    "@firebase/app-types": "0.x"
  },
  "devDependencies": {
    "@firebase/app": "0.6.13",
    "@rollup/plugin-alias": "3.1.1",
    "@rollup/plugin-json": "4.1.0",
    "@rollup/plugin-node-resolve": "9.0.0",
    "@types/eslint": "7.2.5",
    "@types/json-stable-stringify": "1.0.32",
    "json-stable-stringify": "1.0.1",
    "protobufjs": "6.10.2",
    "rollup": "2.33.2",
    "rollup-plugin-copy": "3.3.0",
    "rollup-plugin-copy-assets": "1.1.0",
    "rollup-plugin-replace": "2.2.0",
    "rollup-plugin-sourcemaps": "0.6.3",
    "rollup-plugin-terser": "7.0.2",
    "rollup-plugin-typescript2": "0.29.0",
    "ts-node": "9.0.0",
    "typescript": "4.0.5"
  },
  "repository": {
    "directory": "packages/firestore",
    "type": "git",
    "url": "https://github.com/firebase/firebase-js-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/firebase/firebase-js-sdk/issues"
  },
  "typings": "dist/index.d.ts",
  "nyc": {
    "extension": [
      ".ts"
    ],
    "reportDir": "./coverage/node"
  }
}
