package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "follow-redirects",
  3. "version": "1.2.6",
  4. "description": "HTTP and HTTPS modules that follow redirects.",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">=4.0"
  8. },
  9. "scripts": {
  10. "test": "xo && BLUEBIRD_DEBUG=1 nyc mocha"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:olalonde/follow-redirects.git"
  15. },
  16. "homepage": "https://github.com/olalonde/follow-redirects",
  17. "bugs": {
  18. "url": "https://github.com/olalonde/follow-redirects/issues"
  19. },
  20. "keywords": [
  21. "http",
  22. "https",
  23. "url",
  24. "redirect",
  25. "client",
  26. "location",
  27. "utility"
  28. ],
  29. "author": {
  30. "name": "Olivier Lalonde",
  31. "email": "olalonde@gmail.com",
  32. "url": "http://www.syskall.com"
  33. },
  34. "contributors": [
  35. "James Talmage <james@talmage.io>",
  36. "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)"
  37. ],
  38. "files": [
  39. "index.js",
  40. "create.js",
  41. "http.js",
  42. "https.js"
  43. ],
  44. "dependencies": {
  45. "debug": "^3.1.0"
  46. },
  47. "devDependencies": {
  48. "bluebird": "^3.4.0",
  49. "concat-stream": "^1.5.2",
  50. "coveralls": "^3.0.0",
  51. "express": "^4.13.0",
  52. "mocha": "^4.0.1",
  53. "nyc": "^11.3.0",
  54. "xo": "^0.17.1"
  55. },
  56. "license": "MIT",
  57. "nyc": {
  58. "reporter": [
  59. "lcov",
  60. "text"
  61. ]
  62. },
  63. "xo": {
  64. "envs": [
  65. "mocha"
  66. ]
  67. },
  68. "_from": "follow-redirects@1.2.6",
  69. "_resolved": "http://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.2.6.tgz"
  70. }