package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "follow-redirects",
  3. "version": "1.5.10",
  4. "description": "HTTP and HTTPS modules that follow redirects.",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">=4.0"
  8. },
  9. "scripts": {
  10. "test": "npm run lint && npm run mocha",
  11. "lint": "eslint *.js test",
  12. "mocha": "nyc mocha"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:follow-redirects/follow-redirects.git"
  17. },
  18. "homepage": "https://github.com/follow-redirects/follow-redirects",
  19. "bugs": {
  20. "url": "https://github.com/follow-redirects/follow-redirects/issues"
  21. },
  22. "keywords": [
  23. "http",
  24. "https",
  25. "url",
  26. "redirect",
  27. "client",
  28. "location",
  29. "utility"
  30. ],
  31. "author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
  32. "contributors": [
  33. "Olivier Lalonde <olalonde@gmail.com> (http://www.syskall.com)",
  34. "James Talmage <james@talmage.io>"
  35. ],
  36. "files": [
  37. "index.js",
  38. "create.js",
  39. "http.js",
  40. "https.js"
  41. ],
  42. "dependencies": {
  43. "debug": "=3.1.0"
  44. },
  45. "devDependencies": {
  46. "concat-stream": "^1.6.0",
  47. "coveralls": "^3.0.2",
  48. "eslint": "^4.19.1",
  49. "express": "^4.16.2",
  50. "mocha": "^5.0.0",
  51. "nyc": "^11.8.0"
  52. },
  53. "license": "MIT",
  54. "nyc": {
  55. "reporter": [
  56. "lcov",
  57. "text"
  58. ]
  59. }
  60. }