package.json 744 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "hpack.js",
  3. "version": "2.1.6",
  4. "description": "HPACK implementation",
  5. "main": "lib/hpack.js",
  6. "scripts": {
  7. "test": "mocha test/*-test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+ssh://git@github.com/indutny/hpack.js.git"
  12. },
  13. "keywords": [
  14. "HPACK",
  15. "HTTP2",
  16. "compress",
  17. "decompress",
  18. "headers"
  19. ],
  20. "author": "Fedor Indutny <fedor@indutny.com>",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/indutny/hpack.js/issues"
  24. },
  25. "homepage": "https://github.com/indutny/hpack.js#readme",
  26. "devDependencies": {
  27. "mocha": "^2.2.5"
  28. },
  29. "dependencies": {
  30. "inherits": "^2.0.1",
  31. "obuf": "^1.0.0",
  32. "readable-stream": "^2.0.1",
  33. "wbuf": "^1.1.0"
  34. }
  35. }