package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "pretty-error",
  3. "version": "4.0.0",
  4. "description": "See nodejs errors with less clutter",
  5. "main": "./lib/PrettyError.js",
  6. "typings": "index.d.ts",
  7. "scripts": {
  8. "test": "mocha \"test/**/*.coffee\"",
  9. "test:watch": "mocha \"test/**/*.coffee\" --watch",
  10. "compile": "coffee --bare --compile --output ./lib ./src",
  11. "compile:watch": "jitter src lib -b",
  12. "watch": "npm run compile:watch & npm run test:watch",
  13. "winwatch": "start/b npm run compile:watch & npm run test:watch",
  14. "prepublish": "npm run compile"
  15. },
  16. "dependencies": {
  17. "lodash": "^4.17.20",
  18. "renderkid": "^3.0.0"
  19. },
  20. "devDependencies": {
  21. "chai": "~1.9.2",
  22. "coffee-script": "~1.8.0",
  23. "coffeescript": "^1.12.7",
  24. "jitter": "^1.3.0",
  25. "mocha": "^8.2.0"
  26. },
  27. "author": "Aria Minaei",
  28. "license": "MIT",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/AriaMinaei/pretty-error.git"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/AriaMinaei/pretty-error/issues"
  35. },
  36. "keywords": [
  37. "pretty",
  38. "error",
  39. "exception",
  40. "debug",
  41. "error-handling",
  42. "readable",
  43. "colorful",
  44. "prettify",
  45. "format",
  46. "human"
  47. ]
  48. }