package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "spdy-transport",
  3. "version": "2.1.1",
  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": "^2.6.8",
  20. "detect-node": "^2.0.3",
  21. "hpack.js": "^2.1.6",
  22. "obuf": "^1.1.1",
  23. "readable-stream": "^2.2.9",
  24. "safe-buffer": "^5.0.1",
  25. "wbuf": "^1.7.2"
  26. },
  27. "devDependencies": {
  28. "async": "^2.4.1",
  29. "istanbul": "^0.4.5",
  30. "mocha": "^3.4.1",
  31. "pre-commit": "^1.2.2",
  32. "standard": "^10.0.2",
  33. "stream-pair": "^1.0.3"
  34. },
  35. "scripts": {
  36. "lint": "standard",
  37. "test": "mocha --reporter=spec test/**/*-test.js test/**/**/*-test.js",
  38. "coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter=spec test/**/*-test.js test/**/**/*-test.js"
  39. },
  40. "pre-commit": [
  41. "lint",
  42. "test"
  43. ]
  44. }