package.json 878 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "on-finished",
  3. "description": "Execute a callback when a request closes, finishes, or errors",
  4. "version": "2.3.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "repository": "jshttp/on-finished",
  11. "dependencies": {
  12. "ee-first": "1.1.1"
  13. },
  14. "devDependencies": {
  15. "istanbul": "0.3.9",
  16. "mocha": "2.2.5"
  17. },
  18. "engines": {
  19. "node": ">= 0.8"
  20. },
  21. "files": [
  22. "HISTORY.md",
  23. "LICENSE",
  24. "index.js"
  25. ],
  26. "scripts": {
  27. "test": "mocha --reporter spec --bail --check-leaks test/",
  28. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  29. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  30. }
  31. }