package.json 976 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@overleaf/logger",
  3. "homepage": "www.overleaf.com",
  4. "description": "A centralised logging system for Overleaf",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/overleaf/overleaf"
  8. },
  9. "license": "AGPL-3.0-only",
  10. "version": "3.1.1",
  11. "scripts": {
  12. "test": "mocha --grep=$MOCHA_GREP test/**/*.js",
  13. "format": "prettier --list-different $PWD/'**/*.js'",
  14. "format:fix": "prettier --write $PWD/'**/*.js'",
  15. "lint": "eslint --max-warnings 0 --format unix .",
  16. "lint:fix": "eslint --fix .",
  17. "test:ci": "npm run test"
  18. },
  19. "dependencies": {
  20. "@google-cloud/logging-bunyan": "^3.2.0",
  21. "@overleaf/o-error": "*",
  22. "@sentry/node": "^6.13.2",
  23. "bunyan": "^1.8.14",
  24. "node-fetch": "^2.6.7"
  25. },
  26. "devDependencies": {
  27. "chai": "^4.3.6",
  28. "mocha": "^10.2.0",
  29. "sandboxed-module": "^2.0.4",
  30. "sinon": "^9.2.4",
  31. "sinon-chai": "^3.7.0"
  32. },
  33. "peerDependencies": {
  34. "@overleaf/metrics": "*"
  35. }
  36. }