package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "spdy-transport",
  3. "version": "3.0.0",
  4. "main": "lib/spdy-transport",
  5. "description": "SPDY v2, v3, v3.1 and HTTP2 transport",
  6. "license": "MIT",
  7. "keywords": [
  8. "spdy",
  9. "http2",
  10. "transport"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/spdy-http2/spdy-transport.git"
  15. },
  16. "homepage": "https://github.com/spdy-http2/spdy-transport",
  17. "author": "Fedor Indutny <fedor@indutny.com>",
  18. "dependencies": {
  19. "debug": "^4.1.0",
  20. "detect-node": "^2.0.4",
  21. "hpack.js": "^2.1.6",
  22. "obuf": "^1.1.2",
  23. "readable-stream": "^3.0.6",
  24. "wbuf": "^1.7.3"
  25. },
  26. "devDependencies": {
  27. "async": "^2.6.1",
  28. "istanbul": "^0.4.5",
  29. "mocha": "^5.2.0",
  30. "pre-commit": "^1.2.2",
  31. "standard": "^12.0.1",
  32. "stream-pair": "^1.0.3"
  33. },
  34. "scripts": {
  35. "lint": "standard",
  36. "test": "mocha --reporter=spec test/**/*-test.js test/**/**/*-test.js",
  37. "coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter=spec test/**/*-test.js test/**/**/*-test.js"
  38. },
  39. "pre-commit": [
  40. "lint",
  41. "test"
  42. ]
  43. }