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.3 KiB

2 months ago
  1. {
  2. "name": "@firebase/app-check",
  3. "version": "0.6.1",
  4. "description": "The App Check component of 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.esm.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/app-check-public.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 && yarn api-report",
  26. "build:release": "yarn build && yarn api-report && yarn typings:public",
  27. "build:deps": "lerna run --scope @firebase/app-check --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. "api-report": "api-extractor run --local --verbose",
  33. "doc": "api-documenter markdown --input temp --output docs",
  34. "build:doc": "yarn build && yarn doc",
  35. "typings:public": "node ../../scripts/build/use_typings.js ./dist/app-check-public.d.ts"
  36. },
  37. "peerDependencies": {
  38. "@firebase/app": "0.x"
  39. },
  40. "dependencies": {
  41. "@firebase/util": "1.9.0",
  42. "@firebase/component": "0.6.1",
  43. "@firebase/logger": "0.4.0",
  44. "tslib": "^2.1.0"
  45. },
  46. "license": "Apache-2.0",
  47. "devDependencies": {
  48. "@firebase/app": "0.9.1",
  49. "rollup": "2.79.1",
  50. "@rollup/plugin-commonjs": "21.1.0",
  51. "@rollup/plugin-json": "4.1.0",
  52. "@rollup/plugin-node-resolve": "13.3.0",
  53. "rollup-plugin-typescript2": "0.31.2",
  54. "typescript": "4.7.4"
  55. },
  56. "repository": {
  57. "directory": "packages/app-check",
  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-check-public.d.ts",
  65. "nyc": {
  66. "extension": [
  67. ".ts"
  68. ],
  69. "reportDir": "./coverage/node"
  70. }
  71. }