package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "follow-redirects",
  3. "version": "1.15.9",
  4. "description": "HTTP and HTTPS modules that follow redirects.",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "files": [
  8. "*.js"
  9. ],
  10. "engines": {
  11. "node": ">=4.0"
  12. },
  13. "scripts": {
  14. "lint": "eslint *.js test",
  15. "test": "nyc mocha"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+ssh://git@github.com/follow-redirects/follow-redirects.git"
  20. },
  21. "homepage": "https://github.com/follow-redirects/follow-redirects",
  22. "bugs": {
  23. "url": "https://github.com/follow-redirects/follow-redirects/issues"
  24. },
  25. "keywords": [
  26. "http",
  27. "https",
  28. "url",
  29. "redirect",
  30. "client",
  31. "location",
  32. "utility"
  33. ],
  34. "author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
  35. "contributors": [
  36. "Olivier Lalonde <olalonde@gmail.com> (http://www.syskall.com)",
  37. "James Talmage <james@talmage.io>"
  38. ],
  39. "funding": [
  40. {
  41. "type": "individual",
  42. "url": "https://github.com/sponsors/RubenVerborgh"
  43. }
  44. ],
  45. "peerDependenciesMeta": {
  46. "debug": {
  47. "optional": true
  48. }
  49. },
  50. "devDependencies": {
  51. "concat-stream": "^2.0.0",
  52. "eslint": "^5.16.0",
  53. "express": "^4.16.4",
  54. "lolex": "^3.1.0",
  55. "mocha": "^6.0.2",
  56. "nyc": "^14.1.1"
  57. }
  58. }