package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "minipass-fetch",
  3. "version": "1.4.1",
  4. "description": "An implementation of window.fetch in Node.js using Minipass streams",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "test": "tap",
  9. "snap": "tap",
  10. "preversion": "npm test",
  11. "postversion": "npm publish",
  12. "postpublish": "git push origin --follow-tags"
  13. },
  14. "tap": {
  15. "coverage-map": "map.js",
  16. "check-coverage": true
  17. },
  18. "devDependencies": {
  19. "@ungap/url-search-params": "^0.1.2",
  20. "abort-controller": "^3.0.0",
  21. "abortcontroller-polyfill": "~1.3.0",
  22. "form-data": "^2.5.1",
  23. "parted": "^0.1.1",
  24. "string-to-arraybuffer": "^1.0.2",
  25. "tap": "^15.0.9",
  26. "whatwg-url": "^7.0.0"
  27. },
  28. "dependencies": {
  29. "minipass": "^3.1.0",
  30. "minipass-sized": "^1.0.3",
  31. "minizlib": "^2.0.0"
  32. },
  33. "optionalDependencies": {
  34. "encoding": "^0.1.12"
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git+https://github.com/npm/minipass-fetch.git"
  39. },
  40. "keywords": [
  41. "fetch",
  42. "minipass",
  43. "node-fetch",
  44. "window.fetch"
  45. ],
  46. "files": [
  47. "index.js",
  48. "lib/*.js"
  49. ],
  50. "engines": {
  51. "node": ">=8"
  52. }
  53. }