package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "follow-redirects",
  3. "version": "1.7.0",
  4. "description": "HTTP and HTTPS modules that follow redirects.",
  5. "main": "index.js",
  6. "files": [
  7. "*.js"
  8. ],
  9. "engines": {
  10. "node": ">=4.0"
  11. },
  12. "scripts": {
  13. "test": "npm run lint && npm run mocha",
  14. "lint": "eslint *.js test",
  15. "mocha": "nyc mocha"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "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. "dependencies": {
  40. "debug": "^3.2.6"
  41. },
  42. "devDependencies": {
  43. "concat-stream": "^1.6.0",
  44. "coveralls": "^3.0.2",
  45. "eslint": "^4.19.1",
  46. "express": "^4.16.2",
  47. "lolex": "^3.0.0",
  48. "mocha": "^5.0.0",
  49. "nyc": "^11.8.0"
  50. },
  51. "license": "MIT",
  52. "nyc": {
  53. "reporter": [
  54. "lcov",
  55. "text"
  56. ]
  57. }
  58. }