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.

72 lines
2.4 KiB

2 months ago
  1. {
  2. "name": "@firebase/remote-config",
  3. "version": "0.4.1",
  4. "description": "The Remote Config package 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/remote-config-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:deps": "lerna run --scope @firebase/remote-config --include-dependencies build",
  27. "build:release": "yarn build && yarn typings:public",
  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",
  32. "test:debug": "karma start --browsers=Chrome --auto-watch",
  33. "prettier": "prettier --write '{src,test}/**/*.{js,ts}'",
  34. "api-report": "api-extractor run --local --verbose",
  35. "doc": "api-documenter markdown --input temp --output docs",
  36. "build:doc": "yarn build && yarn doc",
  37. "typings:public": "node ../../scripts/build/use_typings.js ./dist/remote-config-public.d.ts",
  38. "typings:internal": "node ../../scripts/build/use_typings.js ./dist/src/index.d.ts"
  39. },
  40. "peerDependencies": {
  41. "@firebase/app": "0.x"
  42. },
  43. "dependencies": {
  44. "@firebase/installations": "0.6.1",
  45. "@firebase/logger": "0.4.0",
  46. "@firebase/util": "1.9.0",
  47. "@firebase/component": "0.6.1",
  48. "tslib": "^2.1.0"
  49. },
  50. "license": "Apache-2.0",
  51. "devDependencies": {
  52. "@firebase/app": "0.9.1",
  53. "rollup": "2.79.1",
  54. "rollup-plugin-typescript2": "0.31.2",
  55. "typescript": "4.7.4"
  56. },
  57. "repository": {
  58. "directory": "packages/remote-config",
  59. "type": "git",
  60. "url": "https://github.com/firebase/firebase-js-sdk.git"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  64. },
  65. "typings": "./dist/remote-config-public.d.ts",
  66. "nyc": {
  67. "extension": [
  68. ".ts"
  69. ],
  70. "reportDir": "./coverage/node"
  71. }
  72. }