package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "simple-get",
  3. "description": "Simplest way to make http get requests. Supports HTTPS, redirects, gzip/deflate, streams in < 100 lines.",
  4. "version": "4.0.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "browser": {
  11. "decompress-response": false
  12. },
  13. "bugs": {
  14. "url": "https://github.com/feross/simple-get/issues"
  15. },
  16. "dependencies": {
  17. "decompress-response": "^6.0.0",
  18. "once": "^1.3.1",
  19. "simple-concat": "^1.0.0"
  20. },
  21. "devDependencies": {
  22. "self-signed-https": "^1.0.5",
  23. "standard": "*",
  24. "string-to-stream": "^3.0.0",
  25. "tape": "^5.0.0"
  26. },
  27. "homepage": "https://github.com/feross/simple-get",
  28. "keywords": [
  29. "request",
  30. "http",
  31. "GET",
  32. "get request",
  33. "http.get",
  34. "redirects",
  35. "follow redirects",
  36. "gzip",
  37. "deflate",
  38. "https",
  39. "http-https",
  40. "stream",
  41. "simple request",
  42. "simple get"
  43. ],
  44. "license": "MIT",
  45. "main": "index.js",
  46. "repository": {
  47. "type": "git",
  48. "url": "git://github.com/feross/simple-get.git"
  49. },
  50. "scripts": {
  51. "test": "standard && tape test/*.js"
  52. },
  53. "funding": [
  54. {
  55. "type": "github",
  56. "url": "https://github.com/sponsors/feross"
  57. },
  58. {
  59. "type": "patreon",
  60. "url": "https://www.patreon.com/feross"
  61. },
  62. {
  63. "type": "consulting",
  64. "url": "https://feross.org/support"
  65. }
  66. ]
  67. }