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.

71 lines
2.5 KiB

2 months ago
  1. {
  2. "name": "@firebase/app-compat",
  3. "version": "0.2.1",
  4. "description": "The primary entrypoint to the Firebase JS SDK",
  5. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  6. "main": "dist/index.cjs.js",
  7. "browser": "dist/esm/index.esm2017.js",
  8. "module": "dist/esm/index.esm2017.js",
  9. "esm5": "dist/esm/index.esm5.js",
  10. "lite": "dist/index.lite.js",
  11. "liteesm5": "dist/index.lite.esm5.js",
  12. "exports": {
  13. ".": {
  14. "types": "./dist/app-compat-public.d.ts",
  15. "require": "./dist/index.cjs.js",
  16. "esm5": "./dist/esm/index.esm5.js",
  17. "lite": "./dist/index.lite.js",
  18. "liteesm5": "./dist/index.lite.esm5.js",
  19. "default": "./dist/esm/index.esm2017.js"
  20. },
  21. "./package.json": "./package.json"
  22. },
  23. "files": [
  24. "dist"
  25. ],
  26. "scripts": {
  27. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  28. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  29. "build": "rollup -c && yarn api-report",
  30. "build:deps": "lerna run --scope @firebase/app-compat --include-dependencies build",
  31. "dev": "rollup -c -w",
  32. "test": "run-p lint test:all",
  33. "test:all": "run-p test:browser test:node",
  34. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
  35. "test:browser": "karma start --single-run",
  36. "test:browser:debug": "karma start --browsers Chrome --auto-watch",
  37. "test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js",
  38. "api-report": "api-extractor run --local --verbose",
  39. "typings:public": "node ../../scripts/build/use_typings.js ./dist/app-compat-public.d.ts"
  40. },
  41. "license": "Apache-2.0",
  42. "dependencies": {
  43. "@firebase/app": "0.9.1",
  44. "@firebase/util": "1.9.0",
  45. "@firebase/logger": "0.4.0",
  46. "@firebase/component": "0.6.1",
  47. "tslib": "^2.1.0"
  48. },
  49. "devDependencies": {
  50. "rollup": "2.79.1",
  51. "@rollup/plugin-json": "4.1.0",
  52. "rollup-plugin-replace": "2.2.0",
  53. "rollup-plugin-typescript2": "0.31.2",
  54. "typescript": "4.7.4"
  55. },
  56. "repository": {
  57. "directory": "packages/app-compat",
  58. "type": "git",
  59. "url": "https://github.com/firebase/firebase-js-sdk.git"
  60. },
  61. "bugs": {
  62. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  63. },
  64. "typings": "./dist/app-compat-public.d.ts",
  65. "nyc": {
  66. "extension": [
  67. ".ts"
  68. ],
  69. "reportDir": "./coverage/node"
  70. }
  71. }