package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "follow-redirects",
  3. "version": "1.15.2",
  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. "test": "npm run lint && npm run mocha",
  15. "lint": "eslint *.js test",
  16. "mocha": "nyc mocha"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git@github.com:follow-redirects/follow-redirects.git"
  21. },
  22. "homepage": "https://github.com/follow-redirects/follow-redirects",
  23. "bugs": {
  24. "url": "https://github.com/follow-redirects/follow-redirects/issues"
  25. },
  26. "keywords": [
  27. "http",
  28. "https",
  29. "url",
  30. "redirect",
  31. "client",
  32. "location",
  33. "utility"
  34. ],
  35. "author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
  36. "contributors": [
  37. "Olivier Lalonde <olalonde@gmail.com> (http://www.syskall.com)",
  38. "James Talmage <james@talmage.io>"
  39. ],
  40. "funding": [
  41. {
  42. "type": "individual",
  43. "url": "https://github.com/sponsors/RubenVerborgh"
  44. }
  45. ],
  46. "peerDependenciesMeta": {
  47. "debug": {
  48. "optional": true
  49. }
  50. },
  51. "devDependencies": {
  52. "concat-stream": "^2.0.0",
  53. "eslint": "^5.16.0",
  54. "express": "^4.16.4",
  55. "lolex": "^3.1.0",
  56. "mocha": "^6.0.2",
  57. "nyc": "^14.1.1"
  58. }
  59. }