GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
6.1 KiB

2 months ago
  1. {
  2. "name": "@firebase/firestore",
  3. "version": "3.8.1",
  4. "engines": {
  5. "node": ">=10.10.0"
  6. },
  7. "description": "The Cloud Firestore component of the Firebase JS SDK.",
  8. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  9. "scripts": {
  10. "bundle": "rollup -c",
  11. "prebuild": "tsc --emitDeclarationOnly --declaration -p tsconfig.json; yarn api-report",
  12. "build": "run-p build:lite build:main",
  13. "build:release": "yarn build && yarn typings:public",
  14. "build:scripts": "tsc -moduleResolution node --module commonjs scripts/*.ts && ls scripts/*.js | xargs -I % sh -c 'terser % -o %'",
  15. "build:deps": "lerna run --scope @firebase/firestore --include-dependencies build",
  16. "build:main": "rollup -c rollup.config.js",
  17. "build:lite": "rollup -c rollup.config.lite.js",
  18. "build:debug": "rollup -c rollup.config.debug.js",
  19. "predev": "yarn prebuild",
  20. "dev": "rollup -c -w",
  21. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  22. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  23. "prettier": "prettier --write '*.js' '@(lite|src|test)/**/*.ts'",
  24. "test:lite": "node ./scripts/run-tests.js --emulator --platform node_lite --main=lite/index.ts 'test/lite/**/*.test.ts'",
  25. "test:lite:prod": "node ./scripts/run-tests.js --platform node_lite --main=lite/index.ts 'test/lite/**/*.test.ts'",
  26. "test:lite:browser": "karma start --single-run --lite",
  27. "test:lite:browser:debug": "karma start --browsers=Chrome --lite --auto-watch",
  28. "test": "run-s lint test:all",
  29. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all:ci",
  30. "test:all:ci": "run-p test:browser test:lite:browser test:travis",
  31. "test:all": "run-p test:browser test:lite:browser test:travis test:minified",
  32. "test:browser": "karma start --single-run",
  33. "test:browser:emulator:debug": "karma start --browsers=Chrome --local",
  34. "test:browser:emulator": "karma start --single-run --local",
  35. "test:browser:unit": "karma start --single-run --unit",
  36. "test:browser:debug": "karma start --browsers=Chrome --auto-watch",
  37. "test:node": "node ./scripts/run-tests.js --main=test/register.ts --emulator 'test/{,!(browser|lite)/**/}*.test.ts'",
  38. "test:node:prod": "node ./scripts/run-tests.js --main=test/register.ts 'test/{,!(browser|lite)/**/}*.test.ts'",
  39. "test:node:persistence": "node ./scripts/run-tests.js --main=test/register.ts --persistence --emulator 'test/{,!(browser|lite)/**/}*.test.ts'",
  40. "test:node:persistence:prod": "node ./scripts/run-tests.js --main=test/register.ts --persistence 'test/{,!(browser|lite)/**/}*.test.ts'",
  41. "test:travis": "ts-node --compiler-options='{\"module\":\"commonjs\"}' ../../scripts/emulator-testing/firestore-test-runner.ts",
  42. "test:minified": "(cd ../../integration/firestore ; yarn test)",
  43. "api-report:main": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ../../repo-scripts/prune-dts/extract-public-api.ts --package firestore --packageRoot . --typescriptDts ./dist/firestore/src/index.d.ts --rollupDts ./dist/private.d.ts --untrimmedRollupDts ./dist/internal.d.ts --publicDts ./dist/index.d.ts",
  44. "api-report:lite": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ../../repo-scripts/prune-dts/extract-public-api.ts --package firestore-lite --packageRoot . --typescriptDts ./dist/firestore/lite/index.d.ts --rollupDts ./dist/lite/private.d.ts --untrimmedRollupDts ./dist/lite/internal.d.ts --publicDts ./dist/lite/index.d.ts",
  45. "api-report:api-json": "rm -rf temp && api-extractor run --local --verbose",
  46. "api-report": "run-s api-report:main api-report:lite && yarn api-report:api-json",
  47. "doc": "api-documenter markdown --input temp --output docs",
  48. "typings:public": "node ../../scripts/build/use_typings.js ./dist/index.d.ts"
  49. },
  50. "exports": {
  51. ".": {
  52. "types": "./dist/index.d.ts",
  53. "node": {
  54. "require": "./dist/index.node.cjs.js",
  55. "import": "./dist/index.node.mjs"
  56. },
  57. "react-native": "./dist/index.rn.js",
  58. "esm5": "./dist/index.esm5.js",
  59. "default": "./dist/index.esm2017.js"
  60. },
  61. "./lite": {
  62. "types": "./dist/lite/index.d.ts",
  63. "node": {
  64. "require": "./dist/lite/index.node.cjs.js",
  65. "import": "./dist/lite/index.node.mjs"
  66. },
  67. "react-native": "./dist/lite/index.rn.esm2017.js",
  68. "esm5": "./dist/lite/index.browser.esm5.js",
  69. "default": "./dist/lite/index.browser.esm2017.js"
  70. },
  71. "./package.json": "./package.json"
  72. },
  73. "main": "dist/index.node.cjs.js",
  74. "main-esm": "dist/index.node.mjs",
  75. "react-native": "dist/index.rn.js",
  76. "browser": "dist/index.esm2017.js",
  77. "module": "dist/index.esm2017.js",
  78. "esm5": "dist/index.esm5.js",
  79. "license": "Apache-2.0",
  80. "files": [
  81. "dist",
  82. "lite/package.json"
  83. ],
  84. "dependencies": {
  85. "@firebase/component": "0.6.1",
  86. "@firebase/logger": "0.4.0",
  87. "@firebase/util": "1.9.0",
  88. "@firebase/webchannel-wrapper": "0.9.0",
  89. "@grpc/grpc-js": "~1.7.0",
  90. "@grpc/proto-loader": "^0.6.13",
  91. "node-fetch": "2.6.7",
  92. "tslib": "^2.1.0"
  93. },
  94. "peerDependencies": {
  95. "@firebase/app": "0.x"
  96. },
  97. "devDependencies": {
  98. "@firebase/app": "0.9.1",
  99. "@firebase/app-compat": "0.2.1",
  100. "@firebase/auth": "0.21.1",
  101. "@rollup/plugin-alias": "3.1.9",
  102. "@rollup/plugin-json": "4.1.0",
  103. "@types/eslint": "7.29.0",
  104. "@types/json-stable-stringify": "1.0.34",
  105. "chai-exclude": "2.1.0",
  106. "json-stable-stringify": "1.0.2",
  107. "protobufjs": "6.11.3",
  108. "rollup": "2.79.1",
  109. "rollup-plugin-copy": "3.4.0",
  110. "rollup-plugin-copy-assets": "2.0.3",
  111. "rollup-plugin-replace": "2.2.0",
  112. "rollup-plugin-sourcemaps": "0.6.3",
  113. "rollup-plugin-terser": "7.0.2",
  114. "rollup-plugin-typescript2": "0.31.2",
  115. "ts-node": "10.9.1",
  116. "typescript": "4.7.4"
  117. },
  118. "repository": {
  119. "directory": "packages/firestore",
  120. "type": "git",
  121. "url": "https://github.com/firebase/firebase-js-sdk.git"
  122. },
  123. "bugs": {
  124. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  125. },
  126. "typings": "./dist/index.d.ts",
  127. "nyc": {
  128. "extension": [
  129. ".ts"
  130. ],
  131. "reportDir": "./coverage/node"
  132. }
  133. }