package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "pretty-error",
  3. "version": "2.1.2",
  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": "^2.0.4"
  19. },
  20. "devDependencies": {
  21. "coffee-script": "~1.8.0",
  22. "chai": "~1.9.2",
  23. "mocha": "~2.0.1",
  24. "jitter": "^1.3.0"
  25. },
  26. "author": "Aria Minaei",
  27. "license": "MIT",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/AriaMinaei/pretty-error.git"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/AriaMinaei/pretty-error/issues"
  34. },
  35. "keywords": [
  36. "pretty",
  37. "error",
  38. "exception",
  39. "debug",
  40. "error-handling",
  41. "readable",
  42. "colorful",
  43. "prettify",
  44. "format",
  45. "human"
  46. ]
  47. }