package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "minipass-fetch",
  3. "version": "2.1.2",
  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. "lint": "eslint \"**/*.js\"",
  14. "postlint": "template-oss-check",
  15. "lintfix": "npm run lint -- --fix",
  16. "prepublishOnly": "git push origin --follow-tags",
  17. "posttest": "npm run lint",
  18. "template-oss-apply": "template-oss-apply --force"
  19. },
  20. "tap": {
  21. "coverage-map": "map.js",
  22. "check-coverage": true
  23. },
  24. "devDependencies": {
  25. "@npmcli/eslint-config": "^3.0.1",
  26. "@npmcli/template-oss": "3.5.0",
  27. "@ungap/url-search-params": "^0.2.2",
  28. "abort-controller": "^3.0.0",
  29. "abortcontroller-polyfill": "~1.7.3",
  30. "encoding": "^0.1.13",
  31. "form-data": "^4.0.0",
  32. "nock": "^13.2.4",
  33. "parted": "^0.1.1",
  34. "string-to-arraybuffer": "^1.0.2",
  35. "tap": "^16.0.0"
  36. },
  37. "dependencies": {
  38. "minipass": "^3.1.6",
  39. "minipass-sized": "^1.0.3",
  40. "minizlib": "^2.1.2"
  41. },
  42. "optionalDependencies": {
  43. "encoding": "^0.1.13"
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/npm/minipass-fetch.git"
  48. },
  49. "keywords": [
  50. "fetch",
  51. "minipass",
  52. "node-fetch",
  53. "window.fetch"
  54. ],
  55. "files": [
  56. "bin/",
  57. "lib/"
  58. ],
  59. "engines": {
  60. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  61. },
  62. "author": "GitHub Inc.",
  63. "templateOSS": {
  64. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  65. "version": "3.5.0"
  66. }
  67. }