package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "loud-rejection",
  3. "version": "1.6.0",
  4. "description": "Make unhandled promise rejections fail loudly instead of the default silent fail",
  5. "license": "MIT",
  6. "repository": "sindresorhus/loud-rejection",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava",
  17. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  18. },
  19. "files": [
  20. "index.js",
  21. "register.js",
  22. "api.js"
  23. ],
  24. "keywords": [
  25. "promise",
  26. "promises",
  27. "unhandled",
  28. "uncaught",
  29. "rejection",
  30. "loud",
  31. "fail",
  32. "catch",
  33. "throw",
  34. "handler",
  35. "exit",
  36. "debug",
  37. "debugging",
  38. "verbose"
  39. ],
  40. "dependencies": {
  41. "currently-unhandled": "^0.4.1",
  42. "signal-exit": "^3.0.0"
  43. },
  44. "devDependencies": {
  45. "ava": "*",
  46. "bluebird": "^3.0.5",
  47. "coveralls": "^2.11.4",
  48. "delay": "^1.0.0",
  49. "execa": "^0.4.0",
  50. "get-stream": "^2.0.0",
  51. "nyc": "^6.2.1",
  52. "xo": "*"
  53. },
  54. "nyc": {
  55. "exclude": [
  56. "fixture.js"
  57. ]
  58. },
  59. "__npminstall_done": true,
  60. "_from": "loud-rejection@1.6.0",
  61. "_resolved": "https://registry.npmmirror.com/loud-rejection/-/loud-rejection-1.6.0.tgz"
  62. }