package.json 707 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "http-parser-js",
  3. "version": "0.5.0",
  4. "description": "A pure JS HTTP parser for node.",
  5. "main": "http-parser.js",
  6. "scripts": {
  7. "test": "python tests/test.py && node tests/iojs/test-http-parser-durability.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/creationix/http-parser-js.git"
  12. },
  13. "files": [
  14. "http-parser.js"
  15. ],
  16. "keywords": [
  17. "http"
  18. ],
  19. "author": "Tim Caswell (https://github.com/creationix)",
  20. "contributors": [
  21. "Jimb Esser (https://github.com/Jimbly)",
  22. "Lawrence Rowe (https://github.com/lrowe)",
  23. "Jan Schär (https://github.com/jscissr)",
  24. "Paul Rütter (https://github.com/paulrutter)"
  25. ],
  26. "license": "MIT"
  27. }