package.json 887 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "on-headers",
  3. "description": "Execute a listener when a response is about to write headers",
  4. "version": "1.0.1",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "keywords": [
  8. "event",
  9. "headers",
  10. "http",
  11. "onheaders"
  12. ],
  13. "repository": "jshttp/on-headers",
  14. "dependencies": {},
  15. "devDependencies": {
  16. "istanbul": "0.3.21",
  17. "mocha": "2.3.3",
  18. "supertest": "1.1.0"
  19. },
  20. "files": [
  21. "LICENSE",
  22. "HISTORY.md",
  23. "README.md",
  24. "index.js"
  25. ],
  26. "engines": {
  27. "node": ">= 0.8"
  28. },
  29. "scripts": {
  30. "test": "mocha --reporter spec --bail --check-leaks test/",
  31. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  32. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  33. }
  34. }