package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "minipass-fetch",
  3. "version": "4.0.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:tls-fixtures": "./test/fixtures/tls/setup.sh",
  9. "test": "tap",
  10. "snap": "tap",
  11. "lint": "npm run eslint",
  12. "postlint": "template-oss-check",
  13. "lintfix": "npm run eslint -- --fix",
  14. "posttest": "npm run lint",
  15. "template-oss-apply": "template-oss-apply --force",
  16. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  17. },
  18. "tap": {
  19. "coverage-map": "map.js",
  20. "check-coverage": true,
  21. "nyc-arg": [
  22. "--exclude",
  23. "tap-snapshots/**"
  24. ]
  25. },
  26. "devDependencies": {
  27. "@npmcli/eslint-config": "^5.0.0",
  28. "@npmcli/template-oss": "4.23.3",
  29. "@ungap/url-search-params": "^0.2.2",
  30. "abort-controller": "^3.0.0",
  31. "abortcontroller-polyfill": "~1.7.3",
  32. "encoding": "^0.1.13",
  33. "form-data": "^4.0.0",
  34. "nock": "^13.2.4",
  35. "parted": "^0.1.1",
  36. "string-to-arraybuffer": "^1.0.2",
  37. "tap": "^16.0.0"
  38. },
  39. "dependencies": {
  40. "minipass": "^7.0.3",
  41. "minipass-sized": "^1.0.3",
  42. "minizlib": "^3.0.1"
  43. },
  44. "optionalDependencies": {
  45. "encoding": "^0.1.13"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": "git+https://github.com/npm/minipass-fetch.git"
  50. },
  51. "keywords": [
  52. "fetch",
  53. "minipass",
  54. "node-fetch",
  55. "window.fetch"
  56. ],
  57. "files": [
  58. "bin/",
  59. "lib/"
  60. ],
  61. "engines": {
  62. "node": "^18.17.0 || >=20.5.0"
  63. },
  64. "author": "GitHub Inc.",
  65. "templateOSS": {
  66. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  67. "version": "4.23.3",
  68. "publish": "true"
  69. }
  70. }