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.

81 lines
3.3 KiB

2 months ago
  1. {
  2. "name": "@firebase/auth-compat",
  3. "version": "0.3.1",
  4. "description": "FirebaseAuth compatibility package that uses API style compatible with Firebase@8 and prior versions",
  5. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  6. "main": "dist/index.node.cjs.js",
  7. "browser": "dist/index.esm2017.js",
  8. "module": "dist/index.esm2017.js",
  9. "esm5": "dist/index.esm.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/auth-compat/index.d.ts",
  13. "node": {
  14. "types": "./dist/auth-compat/index.node.d.ts",
  15. "import": "./dist/esm/index.node.esm.js",
  16. "require": "./dist/index.node.cjs.js"
  17. },
  18. "esm5": "./dist/index.esm.js",
  19. "default": "./dist/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",
  30. "build:deps": "lerna run --scope @firebase/auth-compat --include-dependencies build",
  31. "build:release": "yarn build && yarn add-compat-overloads",
  32. "dev": "rollup -c -w",
  33. "test": "run-p lint test:all",
  34. "test:all": "run-p test:browser test:node test:integration",
  35. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
  36. "test:browser": "karma start --single-run",
  37. "test:browser:unit": "karma start --single-run --unit",
  38. "test:browser:integration": "karma start --single-run --integration",
  39. "test:node": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts",
  40. "test:node:integration": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --integration",
  41. "test:webdriver": "rollup -c test/integration/webdriver/static/rollup.config.js && ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --webdriver",
  42. "test:integration": "firebase emulators:exec --project demo-emulatedproject --only auth \"run-s test:browser:integration test:node:integration test:webdriver\"",
  43. "add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../auth/dist/auth-public.d.ts -o dist/auth-compat/index.d.ts -a -r Auth:types.FirebaseAuth -r User:types.User -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/auth"
  44. },
  45. "peerDependencies": {
  46. "@firebase/app-compat": "0.x"
  47. },
  48. "dependencies": {
  49. "@firebase/auth": "0.21.1",
  50. "@firebase/auth-types": "0.12.0",
  51. "@firebase/component": "0.6.1",
  52. "@firebase/util": "1.9.0",
  53. "node-fetch": "2.6.7",
  54. "tslib": "^2.1.0"
  55. },
  56. "license": "Apache-2.0",
  57. "devDependencies": {
  58. "@firebase/app-compat": "0.2.1",
  59. "@rollup/plugin-json": "4.1.0",
  60. "rollup": "2.79.1",
  61. "rollup-plugin-replace": "2.2.0",
  62. "rollup-plugin-typescript2": "0.31.2",
  63. "selenium-webdriver": "4.5.0",
  64. "typescript": "4.7.4"
  65. },
  66. "repository": {
  67. "directory": "packages/auth-compat",
  68. "type": "git",
  69. "url": "https://github.com/firebase/firebase-js-sdk.git"
  70. },
  71. "bugs": {
  72. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  73. },
  74. "typings": "dist/auth-compat/index.d.ts",
  75. "nyc": {
  76. "extension": [
  77. ".ts"
  78. ],
  79. "reportDir": "./coverage/node"
  80. }
  81. }