package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "on-headers",
  3. "description": "Execute a listener when a response is about to write headers",
  4. "version": "1.1.0",
  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. "devDependencies": {
  15. "eslint": "6.8.0",
  16. "eslint-config-standard": "14.1.1",
  17. "eslint-plugin-import": "2.21.2",
  18. "eslint-plugin-markdown": "1.0.2",
  19. "eslint-plugin-node": "11.1.0",
  20. "eslint-plugin-promise": "4.2.1",
  21. "eslint-plugin-standard": "4.0.1",
  22. "mocha": "10.2.0",
  23. "nyc": "15.1.0",
  24. "supertest": "4.0.2"
  25. },
  26. "files": [
  27. "LICENSE",
  28. "HISTORY.md",
  29. "README.md",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.8"
  34. },
  35. "scripts": {
  36. "lint": "eslint --plugin markdown --ext js,md .",
  37. "test": "mocha --reporter spec --check-leaks test/test.js",
  38. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  39. "test-cov": "nyc --reporter=html --reporter=text npm test",
  40. "update-upstream-hashes": "node scripts/update-upstream-hashes.js",
  41. "upstream": "mocha --reporter spec --check-leaks test/upstream.js",
  42. "version": "node scripts/version-history.js && git add HISTORY.md"
  43. }
  44. }