package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "spdy",
  3. "version": "3.4.7",
  4. "description": "Implementation of the SPDY protocol on node.js.",
  5. "license": "MIT",
  6. "scripts": {
  7. "lint": "standard",
  8. "test": "mocha --reporter=spec test/*-test.js",
  9. "coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter=spec test/**/*-test.js"
  10. },
  11. "pre-commit": [
  12. "lint",
  13. "test"
  14. ],
  15. "keywords": [
  16. "spdy"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/indutny/node-spdy.git"
  21. },
  22. "homepage": "https://github.com/indutny/node-spdy",
  23. "bugs": {
  24. "email": "node-spdy+bugs@indutny.com",
  25. "url": "https://github.com/spdy-http2/node-spdy/issues"
  26. },
  27. "author": "Fedor Indutny <fedor.indutny@gmail.com>",
  28. "contributors": [
  29. "Chris Storm <github@eeecooks.com>",
  30. "François de Metz <francois@2metz.fr>",
  31. "Ilya Grigorik <ilya@igvita.com>",
  32. "Roberto Peon",
  33. "Tatsuhiro Tsujikawa",
  34. "Jesse Cravens <jesse.cravens@gmail.com>"
  35. ],
  36. "dependencies": {
  37. "debug": "^2.6.8",
  38. "handle-thing": "^1.2.5",
  39. "http-deceiver": "^1.2.7",
  40. "safe-buffer": "^5.0.1",
  41. "select-hose": "^2.0.0",
  42. "spdy-transport": "^2.0.18"
  43. },
  44. "devDependencies": {
  45. "istanbul": "^0.4.5",
  46. "mocha": "^3.4.1",
  47. "pre-commit": "^1.2.2",
  48. "standard": "^10.0.2"
  49. },
  50. "engines": [
  51. "node >= 0.7.0"
  52. ],
  53. "main": "./lib/spdy",
  54. "optionalDependencies": {}
  55. }