package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.0",
  11. "scripts": {
  12. "test": "mocha --grep=$MOCHA_GREP test/**/*.js",
  13. "format": "prettier-eslint $PWD'/**/*.js' --list-different",
  14. "format:fix": "prettier-eslint $PWD'/**/*.js' --write",
  15. "lint": "eslint --max-warnings 0 --format unix .",
  16. "lint:fix": "eslint --fix .",
  17. "test:ci": "npm run test"
  18. },
  19. "dependencies": {
  20. "@overleaf/o-error": "^3.0.0",
  21. "@sentry/node": "^6.13.2",
  22. "bunyan": "^1.8.14",
  23. "node-fetch": "^2.6.1",
  24. "yn": "^4.0.0"
  25. },
  26. "devDependencies": {
  27. "chai": "^4.2.0",
  28. "eslint": "^7.3.1",
  29. "eslint-config-prettier": "^6.11.0",
  30. "eslint-config-standard": "^14.1.1",
  31. "eslint-plugin-chai-expect": "^2.1.0",
  32. "eslint-plugin-chai-friendly": "^0.6.0",
  33. "eslint-plugin-import": "^2.22.0",
  34. "eslint-plugin-mocha": "^7.0.1",
  35. "eslint-plugin-node": "^11.1.0",
  36. "eslint-plugin-promise": "^4.2.1",
  37. "eslint-plugin-standard": "^4.0.1",
  38. "mocha": "^8.4.0",
  39. "prettier": "^2.0.5",
  40. "prettier-eslint-cli": "^5.0.0",
  41. "sandboxed-module": "^2.0.4",
  42. "sinon": "^9.0.2",
  43. "sinon-chai": "^3.5.0"
  44. },
  45. "peerDependencies": {
  46. "@overleaf/metrics": ">= 4.0.0"
  47. }
  48. }