package.json 972 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@overleaf/o-error",
  3. "version": "2.1.0",
  4. "description": "Make custom error types that pass `instanceof` checks, have stack traces, support custom messages and properties, and can wrap causes (like VError).",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "test": "mocha --require test/support"
  9. },
  10. "author": "Overleaf (https://www.overleaf.com)",
  11. "license": "MIT",
  12. "repository": "github:overleaf/o-error",
  13. "devDependencies": {
  14. "chai": "^3.3.0",
  15. "eslint": "^6.8.0",
  16. "eslint-config-prettier": "^6.10.1",
  17. "eslint-config-standard": "^14.1.1",
  18. "eslint-plugin-chai-expect": "^2.1.0",
  19. "eslint-plugin-chai-friendly": "^0.5.0",
  20. "eslint-plugin-import": "^2.20.2",
  21. "eslint-plugin-mocha": "^6.3.0",
  22. "eslint-plugin-node": "^11.1.0",
  23. "eslint-plugin-prettier": "^3.1.3",
  24. "eslint-plugin-promise": "^4.2.1",
  25. "eslint-plugin-standard": "^4.0.1",
  26. "mocha": "^7.1.1",
  27. "prettier": "^2.0.2"
  28. }
  29. }