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.

59 lines
1.8 KiB

2 months ago
  1. {
  2. "name": "@firebase/component",
  3. "version": "0.6.1",
  4. "description": "Firebase Component Platform",
  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.esm5.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/index.d.ts",
  13. "require": "./dist/index.cjs.js",
  14. "esm5": "./dist/esm/index.esm5.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",
  26. "build:deps": "lerna run --scope @firebase/component --include-dependencies build",
  27. "dev": "rollup -c -w",
  28. "test": "run-p lint test:all",
  29. "test:all": "run-p test:browser test:node",
  30. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
  31. "test:browser": "karma start --single-run",
  32. "test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js"
  33. },
  34. "dependencies": {
  35. "@firebase/util": "1.9.0",
  36. "tslib": "^2.1.0"
  37. },
  38. "license": "Apache-2.0",
  39. "devDependencies": {
  40. "rollup": "2.79.1",
  41. "rollup-plugin-typescript2": "0.31.2",
  42. "typescript": "4.7.4"
  43. },
  44. "repository": {
  45. "directory": "packages/component",
  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. "typings": "dist/index.d.ts",
  53. "nyc": {
  54. "extension": [
  55. ".ts"
  56. ],
  57. "reportDir": "./coverage/node"
  58. }
  59. }