package.json 908 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "error-ex",
  3. "description": "Easy error subclassing and stack customization",
  4. "version": "1.3.2",
  5. "maintainers": [
  6. "Josh Junon <i.am.qix@gmail.com> (github.com/qix-)",
  7. "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)"
  8. ],
  9. "keywords": [
  10. "error",
  11. "errors",
  12. "extend",
  13. "extending",
  14. "extension",
  15. "subclass",
  16. "stack",
  17. "custom"
  18. ],
  19. "license": "MIT",
  20. "scripts": {
  21. "pretest": "xo",
  22. "test": "mocha --compilers coffee:coffee-script/register"
  23. },
  24. "xo": {
  25. "rules": {
  26. "operator-linebreak": [
  27. 0
  28. ]
  29. }
  30. },
  31. "repository": "qix-/node-error-ex",
  32. "files": [
  33. "index.js"
  34. ],
  35. "devDependencies": {
  36. "coffee-script": "^1.9.3",
  37. "coveralls": "^2.11.2",
  38. "istanbul": "^0.3.17",
  39. "mocha": "^2.2.5",
  40. "should": "^7.0.1",
  41. "xo": "^0.7.1"
  42. },
  43. "dependencies": {
  44. "is-arrayish": "^0.2.1"
  45. }
  46. }