package.json 798 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "stack-utils",
  3. "version": "1.0.2",
  4. "description": "Captures and cleans stack traces",
  5. "license": "MIT",
  6. "repository": "tapjs/stack-utils",
  7. "author": {
  8. "name": "James Talmage",
  9. "email": "james@talmage.io",
  10. "url": "github.com/jamestalmage"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "tap test/*.js --100 -J",
  17. "preversion": "npm test",
  18. "postversion": "npm publish",
  19. "postpublish": "git push origin --all; git push origin --tags"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "keywords": [
  25. ""
  26. ],
  27. "dependencies": {},
  28. "devDependencies": {
  29. "bluebird": "^3.1.1",
  30. "coveralls": "^2.11.6",
  31. "flatten": "0.0.1",
  32. "nested-error-stacks": "^2.0.0",
  33. "pify": "^2.3.0",
  34. "q": "^1.4.1",
  35. "tap": "^10.3.2"
  36. }
  37. }