package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "stacktracey",
  3. "version": "2.1.8",
  4. "description": "Parses call stacks. Reads sources. Clean & filtered output. Sourcemaps. Node & browsers.",
  5. "main": "stacktracey",
  6. "types": "./stacktracey.d.ts",
  7. "scripts": {
  8. "lint": "eslint stacktracey.js",
  9. "test": "nyc --reporter=html --reporter=text mocha --reporter spec",
  10. "test-no-coverage": "mocha --reporter spec",
  11. "autotest": "mocha --reporter spec --watch",
  12. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/xpl/stacktracey.git"
  17. },
  18. "keywords": [
  19. "stack",
  20. "stacktrace",
  21. "stack printer",
  22. "error printer",
  23. "print error",
  24. "print stack",
  25. "print debug trace",
  26. "debug",
  27. "trace",
  28. "parse",
  29. "print",
  30. "pretty",
  31. "callstack",
  32. "call stack",
  33. "read sources",
  34. "error",
  35. "Error.stack",
  36. "error stack",
  37. "stack parse",
  38. "call stack parsing",
  39. "stack parsing",
  40. "stack parse",
  41. "parse stack",
  42. "parse call stack",
  43. "callstack parser",
  44. "call stack parse",
  45. "parse callstack",
  46. "parse stacktrace",
  47. "parse stack trace",
  48. "error stack parse",
  49. "Error.stack parse",
  50. "stack parser",
  51. "error parser",
  52. "error trace",
  53. "trace error",
  54. "sourcemap",
  55. "call location",
  56. "source text",
  57. "source lines",
  58. "print error with sources",
  59. "show error",
  60. "handling exceptions",
  61. "exception parser",
  62. "exception printer",
  63. "custom error",
  64. "pretty print",
  65. "pretty print errors",
  66. "pretty print stack"
  67. ],
  68. "author": "Vitaly Gordon <rocket.mind@gmail.com>",
  69. "license": "Unlicense",
  70. "bugs": {
  71. "url": "https://github.com/xpl/stacktracey/issues"
  72. },
  73. "homepage": "https://xpl.github.io/stacktracey",
  74. "devDependencies": {
  75. "babel-cli": "^6.26.0",
  76. "chai": "^4.2.0",
  77. "coveralls": "^3.0.3",
  78. "eslint": "^4.19.1",
  79. "istanbul": "^0.4.5",
  80. "mocha": "^4.1.0",
  81. "nyc": "^14.1.1"
  82. },
  83. "dependencies": {
  84. "as-table": "^1.0.36",
  85. "get-source": "^2.0.12"
  86. }
  87. }