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.

58 lines
1.8 KiB

2 months ago
  1. {
  2. "name": "@firebase/logger",
  3. "version": "0.4.0",
  4. "description": "A logger package for use in the Firebase JS SDK",
  5. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  6. "main": "dist/index.cjs.js",
  7. "module": "dist/esm/index.esm2017.js",
  8. "esm5": "dist/esm/index.esm5.js",
  9. "exports": {
  10. ".": {
  11. "types": "./dist/index.d.ts",
  12. "require": "./dist/index.cjs.js",
  13. "esm5": "./dist/esm/index.esm5.js",
  14. "default": "./dist/esm/index.esm2017.js"
  15. },
  16. "./package.json": "./package.json"
  17. },
  18. "files": [
  19. "dist"
  20. ],
  21. "scripts": {
  22. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  23. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  24. "build": "rollup -c",
  25. "build:deps": "lerna run --scope @firebase/logger --include-dependencies build",
  26. "dev": "rollup -c -w",
  27. "test": "run-p lint test:all",
  28. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
  29. "test:all": "run-p test:browser test:node",
  30. "test:browser": "karma start --single-run",
  31. "test:browser:debug": "karma start --browsers Chrome --auto-watch",
  32. "test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* --config ../../config/mocharc.node.js"
  33. },
  34. "license": "Apache-2.0",
  35. "dependencies": {
  36. "tslib": "^2.1.0"
  37. },
  38. "devDependencies": {
  39. "rollup": "2.79.1",
  40. "rollup-plugin-typescript2": "0.31.2",
  41. "typescript": "4.7.4"
  42. },
  43. "repository": {
  44. "directory": "packages/logger",
  45. "type": "git",
  46. "url": "https://github.com/firebase/firebase-js-sdk.git"
  47. },
  48. "bugs": {
  49. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  50. },
  51. "typings": "dist/index.d.ts",
  52. "nyc": {
  53. "extension": [
  54. ".ts"
  55. ],
  56. "reportDir": "./coverage/node"
  57. }
  58. }