package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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": "2.3.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. "@google-cloud/logging-bunyan": "^3.1.0",
  21. "@overleaf/o-error": "^3.0.0",
  22. "@sentry/node": "^6.13.2",
  23. "bunyan": "^1.8.14",
  24. "node-fetch": "^2.6.1",
  25. "yn": "^4.0.0"
  26. },
  27. "devDependencies": {
  28. "chai": "^4.2.0",
  29. "eslint": "^7.3.1",
  30. "eslint-config-prettier": "^6.11.0",
  31. "eslint-config-standard": "^14.1.1",
  32. "eslint-plugin-chai-expect": "^2.1.0",
  33. "eslint-plugin-chai-friendly": "^0.6.0",
  34. "eslint-plugin-import": "^2.22.0",
  35. "eslint-plugin-mocha": "^7.0.1",
  36. "eslint-plugin-node": "^11.1.0",
  37. "eslint-plugin-promise": "^4.2.1",
  38. "eslint-plugin-standard": "^4.0.1",
  39. "mocha": "^8.4.0",
  40. "prettier": "^2.0.5",
  41. "prettier-eslint-cli": "^5.0.0",
  42. "sandboxed-module": "^2.0.4",
  43. "sinon": "^9.0.2",
  44. "sinon-chai": "^3.5.0"
  45. }
  46. }