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

2 months ago
  1. {
  2. "name": "@firebase/installations",
  3. "version": "0.6.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/installations-public.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/installations-public.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 && yarn api-report",
  27. "build:deps": "lerna run --scope @firebase/installations --include-dependencies build",
  28. "build:release": "yarn build && yarn typings:public",
  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. "api-report": "api-extractor run --local --verbose",
  39. "doc": "api-documenter markdown --input temp --output docs",
  40. "build:doc": "yarn build && yarn doc",
  41. "typings:public": "node ../../scripts/build/use_typings.js ./dist/installations-public.d.ts",
  42. "typings:internal": "node ../../scripts/build/use_typings.js ./dist/src/index.d.ts"
  43. },
  44. "repository": {
  45. "directory": "packages/installations",
  46. "type": "git",
  47. "url": "https://github.com/firebase/firebase-js-sdk.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  51. },
  52. "devDependencies": {
  53. "@firebase/app": "0.9.1",
  54. "rollup": "2.79.1",
  55. "@rollup/plugin-commonjs": "21.1.0",
  56. "@rollup/plugin-json": "4.1.0",
  57. "@rollup/plugin-node-resolve": "13.3.0",
  58. "rollup-plugin-typescript2": "0.31.2",
  59. "rollup-plugin-uglify": "6.0.4",
  60. "typescript": "4.7.4"
  61. },
  62. "peerDependencies": {
  63. "@firebase/app": "0.x"
  64. },
  65. "dependencies": {
  66. "@firebase/util": "1.9.0",
  67. "@firebase/component": "0.6.1",
  68. "idb": "7.0.1",
  69. "tslib": "^2.1.0"
  70. }
  71. }