package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "http2-wrapper",
  3. "version": "1.0.3",
  4. "description": "HTTP2 client, just with the familiar `https` API",
  5. "main": "source",
  6. "engines": {
  7. "node": ">=10.19.0"
  8. },
  9. "scripts": {
  10. "test": "xo && nyc --reporter=lcovonly --reporter=text --reporter=html ava"
  11. },
  12. "files": [
  13. "source"
  14. ],
  15. "keywords": [
  16. "http2",
  17. "https",
  18. "http",
  19. "request"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/szmarczak/http2-wrapper.git"
  24. },
  25. "author": "Szymon Marczak",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/szmarczak/http2-wrapper/issues"
  29. },
  30. "homepage": "https://github.com/szmarczak/http2-wrapper#readme",
  31. "dependencies": {
  32. "quick-lru": "^5.1.1",
  33. "resolve-alpn": "^1.0.0"
  34. },
  35. "devDependencies": {
  36. "@sindresorhus/is": "^3.0.0",
  37. "ava": "^3.10.1",
  38. "benchmark": "^2.1.4",
  39. "get-stream": "^5.1.0",
  40. "got": "^11.5.0",
  41. "http2-proxy": "^5.0.51",
  42. "lolex": "^6.0.0",
  43. "many-keys-map": "^1.0.2",
  44. "nyc": "^15.1.0",
  45. "p-event": "^4.2.0",
  46. "tempy": "^0.5.0",
  47. "to-readable-stream": "^2.1.0",
  48. "tsd": "^0.13.1",
  49. "xo": "^0.32.1"
  50. },
  51. "ava": {
  52. "timeout": "2m"
  53. }
  54. }