package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "got",
  3. "version": "8.3.2",
  4. "description": "Simplified HTTP requests",
  5. "license": "MIT",
  6. "repository": "sindresorhus/got",
  7. "maintainers": [
  8. {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. {
  14. "name": "Vsevolod Strukchinsky",
  15. "email": "floatdrop@gmail.com",
  16. "url": "github.com/floatdrop"
  17. },
  18. {
  19. "name": "Alexander Tesfamichael",
  20. "email": "alex.tesfamichael@gmail.com",
  21. "url": "alextes.me"
  22. }
  23. ],
  24. "engines": {
  25. "node": ">=4"
  26. },
  27. "scripts": {
  28. "test": "xo && nyc ava",
  29. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  30. },
  31. "files": [
  32. "index.js",
  33. "errors.js"
  34. ],
  35. "keywords": [
  36. "http",
  37. "https",
  38. "get",
  39. "got",
  40. "url",
  41. "uri",
  42. "request",
  43. "util",
  44. "utility",
  45. "simple",
  46. "curl",
  47. "wget",
  48. "fetch",
  49. "net",
  50. "network",
  51. "electron"
  52. ],
  53. "dependencies": {
  54. "@sindresorhus/is": "^0.7.0",
  55. "cacheable-request": "^2.1.1",
  56. "decompress-response": "^3.3.0",
  57. "duplexer3": "^0.1.4",
  58. "get-stream": "^3.0.0",
  59. "into-stream": "^3.1.0",
  60. "is-retry-allowed": "^1.1.0",
  61. "isurl": "^1.0.0-alpha5",
  62. "lowercase-keys": "^1.0.0",
  63. "mimic-response": "^1.0.0",
  64. "p-cancelable": "^0.4.0",
  65. "p-timeout": "^2.0.1",
  66. "pify": "^3.0.0",
  67. "safe-buffer": "^5.1.1",
  68. "timed-out": "^4.0.1",
  69. "url-parse-lax": "^3.0.0",
  70. "url-to-options": "^1.0.1"
  71. },
  72. "devDependencies": {
  73. "ava": "^0.25.0",
  74. "coveralls": "^3.0.0",
  75. "form-data": "^2.1.1",
  76. "get-port": "^3.0.0",
  77. "nyc": "^11.0.2",
  78. "p-event": "^1.3.0",
  79. "pem": "^1.4.4",
  80. "proxyquire": "^1.8.0",
  81. "sinon": "^4.0.0",
  82. "slow-stream": "0.0.4",
  83. "tempfile": "^2.0.0",
  84. "tempy": "^0.2.1",
  85. "universal-url": "1.0.0-alpha",
  86. "xo": "^0.20.0"
  87. },
  88. "ava": {
  89. "concurrency": 4
  90. },
  91. "browser": {
  92. "decompress-response": false,
  93. "electron": false
  94. }
  95. }