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.

62 lines
2.1 KiB

2 months ago
  1. {
  2. "name": "@firebase/messaging-compat",
  3. "version": "0.2.1",
  4. "license": "Apache-2.0",
  5. "description": "",
  6. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  7. "main": "dist/index.cjs.js",
  8. "browser": "dist/esm/index.esm2017.js",
  9. "module": "dist/esm/index.esm2017.js",
  10. "esm5": "dist/esm/index.esm.js",
  11. "exports": {
  12. ".": {
  13. "types": "./dist/src/index.d.ts",
  14. "node": "./dist/index.cjs.js",
  15. "esm5": "./dist/esm/index.esm.js",
  16. "default": "./dist/esm/index.esm2017.js"
  17. },
  18. "./package.json": "./package.json"
  19. },
  20. "typings": "dist/src/index.d.ts",
  21. "files": [
  22. "dist"
  23. ],
  24. "scripts": {
  25. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  26. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  27. "build": "rollup -c",
  28. "build:deps": "lerna run --scope @firebase/'messaging-compat' --include-dependencies build",
  29. "build:release": "yarn build && yarn add-compat-overloads",
  30. "dev": "rollup -c -w",
  31. "test": "run-p test:karma",
  32. "test:ci": "node ../../scripts/run_tests_in_ci.js",
  33. "test:karma": "karma start --single-run",
  34. "test:debug": "karma start --browsers=Chrome --auto-watch",
  35. "type-check": "tsc --noEmit",
  36. "add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../messaging/dist/index-public.d.ts -o dist/src/index.d.ts -a -r Messaging:MessagingCompat -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/messaging"
  37. },
  38. "peerDependencies": {
  39. "@firebase/app-compat": "0.x"
  40. },
  41. "dependencies": {
  42. "@firebase/messaging": "0.12.1",
  43. "@firebase/component": "0.6.1",
  44. "@firebase/util": "1.9.0",
  45. "tslib": "^2.1.0"
  46. },
  47. "devDependencies": {
  48. "@firebase/app-compat": "0.2.1",
  49. "@rollup/plugin-json": "4.1.0",
  50. "rollup-plugin-typescript2": "0.31.2",
  51. "ts-essentials": "9.3.0",
  52. "typescript": "4.7.4"
  53. },
  54. "repository": {
  55. "directory": "packages/messaging",
  56. "type": "git",
  57. "url": "https://github.com/firebase/firebase-js-sdk.git"
  58. },
  59. "bugs": {
  60. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  61. }
  62. }