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.

70 lines
2.4 KiB

2 months ago
  1. {
  2. "name": "@firebase/app-check-compat",
  3. "version": "0.3.1",
  4. "description": "A compat App Check package for new firebase packages",
  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.esm.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/src/index.d.ts",
  13. "require": "./dist/index.cjs.js",
  14. "esm5": "./dist/esm/index.esm.js",
  15. "default": "./dist/esm/index.esm2017.js"
  16. },
  17. "./package.json": "./package.json"
  18. },
  19. "files": [
  20. "dist"
  21. ],
  22. "scripts": {
  23. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  24. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  25. "build": "rollup -c",
  26. "build:release": "yarn build && yarn add-compat-overloads",
  27. "build:deps": "lerna run --scope @firebase/app-check-compat --include-dependencies build",
  28. "dev": "rollup -c -w",
  29. "test": "run-p lint test:browser",
  30. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser",
  31. "test:browser": "karma start --single-run --nocache",
  32. "add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../app-check/dist/app-check-public.d.ts -o dist/src/index.d.ts -a -r AppCheck:FirebaseAppCheck -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/app-check"
  33. },
  34. "peerDependencies": {
  35. "@firebase/app-compat": "0.x"
  36. },
  37. "dependencies": {
  38. "@firebase/app-check": "0.6.1",
  39. "@firebase/app-check-types": "0.5.0",
  40. "@firebase/logger": "0.4.0",
  41. "@firebase/util": "1.9.0",
  42. "@firebase/component": "0.6.1",
  43. "tslib": "^2.1.0"
  44. },
  45. "license": "Apache-2.0",
  46. "devDependencies": {
  47. "@firebase/app-compat": "0.2.1",
  48. "rollup": "2.79.1",
  49. "@rollup/plugin-commonjs": "21.1.0",
  50. "@rollup/plugin-json": "4.1.0",
  51. "@rollup/plugin-node-resolve": "13.3.0",
  52. "rollup-plugin-typescript2": "0.31.2",
  53. "typescript": "4.7.4"
  54. },
  55. "repository": {
  56. "directory": "packages/app-check",
  57. "type": "git",
  58. "url": "https://github.com/firebase/firebase-js-sdk.git"
  59. },
  60. "bugs": {
  61. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  62. },
  63. "typings": "dist/src/index.d.ts",
  64. "nyc": {
  65. "extension": [
  66. ".ts"
  67. ],
  68. "reportDir": "./coverage/node"
  69. }
  70. }