package.json 813 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "stack-utils",
  3. "version": "1.0.5",
  4. "publishConfig": {
  5. "tag": "v1-legacy"
  6. },
  7. "description": "Captures and cleans stack traces",
  8. "license": "MIT",
  9. "repository": "tapjs/stack-utils",
  10. "author": {
  11. "name": "James Talmage",
  12. "email": "james@talmage.io",
  13. "url": "github.com/jamestalmage"
  14. },
  15. "engines": {
  16. "node": ">=8"
  17. },
  18. "scripts": {
  19. "test": "tap --no-esm --100",
  20. "preversion": "npm test",
  21. "postversion": "npm publish",
  22. "prepublishOnly": "git push origin --follow-tags"
  23. },
  24. "files": [
  25. "index.js"
  26. ],
  27. "dependencies": {
  28. "escape-string-regexp": "^2.0.0"
  29. },
  30. "devDependencies": {
  31. "bluebird": "^3.7.2",
  32. "coveralls": "^3.0.9",
  33. "nested-error-stacks": "^2.1.0",
  34. "pify": "^4.0.1",
  35. "q": "^1.5.1",
  36. "tap": "^14.10.8"
  37. }
  38. }