package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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",
  9. "typecheck": "tsc --allowJs --checkJs --noEmit --moduleResolution node --target ES6 *.js test/**/*.js"
  10. },
  11. "author": "Overleaf (https://www.overleaf.com)",
  12. "license": "MIT",
  13. "repository": "github:overleaf/o-error",
  14. "devDependencies": {
  15. "@types/node": "^13.13.2",
  16. "chai": "^3.3.0",
  17. "eslint": "^6.8.0",
  18. "eslint-config-prettier": "^6.10.1",
  19. "eslint-config-standard": "^14.1.1",
  20. "eslint-plugin-chai-expect": "^2.1.0",
  21. "eslint-plugin-chai-friendly": "^0.5.0",
  22. "eslint-plugin-import": "^2.20.2",
  23. "eslint-plugin-mocha": "^6.3.0",
  24. "eslint-plugin-node": "^11.1.0",
  25. "eslint-plugin-prettier": "^3.1.3",
  26. "eslint-plugin-promise": "^4.2.1",
  27. "eslint-plugin-standard": "^4.0.1",
  28. "mocha": "^7.1.1",
  29. "prettier": "^2.0.2",
  30. "typescript": "^3.8.3"
  31. }
  32. }