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.

67 lines
2.2 KiB

2 months ago
  1. {
  2. "name": "@firebase/installations-compat",
  3. "version": "0.2.1",
  4. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  5. "main": "dist/index.cjs.js",
  6. "module": "dist/esm/index.esm2017.js",
  7. "browser": "dist/esm/index.esm2017.js",
  8. "esm5": "dist/esm/index.esm.js",
  9. "exports": {
  10. ".": {
  11. "types": "./dist/src/index.d.ts",
  12. "require": "./dist/index.cjs.js",
  13. "esm5": "./dist/esm/index.esm.js",
  14. "default": "./dist/esm/index.esm2017.js"
  15. },
  16. "./package.json": "./package.json"
  17. },
  18. "typings": "dist/src/index.d.ts",
  19. "license": "Apache-2.0",
  20. "files": [
  21. "dist"
  22. ],
  23. "scripts": {
  24. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  25. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  26. "build": "rollup -c",
  27. "build:deps": "lerna run --scope @firebase/installations-compat --include-dependencies build",
  28. "build:release": "rollup -c rollup.config.release.js",
  29. "dev": "rollup -c -w",
  30. "test": "yarn type-check && yarn test:karma && yarn lint",
  31. "test:ci": "node ../../scripts/run_tests_in_ci.js",
  32. "test:karma": "karma start --single-run",
  33. "test:debug": "karma start --browsers=Chrome --auto-watch",
  34. "type-check": "tsc -p . --noEmit",
  35. "serve": "yarn serve:build && yarn serve:host",
  36. "serve:build": "rollup -c test-app/rollup.config.js",
  37. "serve:host": "http-server -c-1 test-app"
  38. },
  39. "repository": {
  40. "directory": "packages/installations-compat",
  41. "type": "git",
  42. "url": "https://github.com/firebase/firebase-js-sdk.git"
  43. },
  44. "bugs": {
  45. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  46. },
  47. "devDependencies": {
  48. "@firebase/app-compat": "0.2.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. "rollup-plugin-uglify": "6.0.4",
  55. "typescript": "4.7.4"
  56. },
  57. "peerDependencies": {
  58. "@firebase/app-compat": "0.x"
  59. },
  60. "dependencies": {
  61. "@firebase/installations": "0.6.1",
  62. "@firebase/installations-types": "0.5.0",
  63. "@firebase/util": "1.9.0",
  64. "@firebase/component": "0.6.1",
  65. "tslib": "^2.1.0"
  66. }
  67. }