package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "npm-registry-fetch",
  3. "version": "18.0.2",
  4. "description": "Fetch-based http client for use with npm registry APIs",
  5. "main": "lib",
  6. "files": [
  7. "bin/",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
  12. "lint": "npm run eslint",
  13. "lintfix": "npm run eslint -- --fix",
  14. "test": "tap",
  15. "posttest": "npm run lint",
  16. "npmclilint": "npmcli-lint",
  17. "postsnap": "npm run lintfix --",
  18. "postlint": "template-oss-check",
  19. "snap": "tap",
  20. "template-oss-apply": "template-oss-apply --force"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/npm/npm-registry-fetch.git"
  25. },
  26. "keywords": [
  27. "npm",
  28. "registry",
  29. "fetch"
  30. ],
  31. "author": "GitHub Inc.",
  32. "license": "ISC",
  33. "dependencies": {
  34. "@npmcli/redact": "^3.0.0",
  35. "jsonparse": "^1.3.1",
  36. "make-fetch-happen": "^14.0.0",
  37. "minipass": "^7.0.2",
  38. "minipass-fetch": "^4.0.0",
  39. "minizlib": "^3.0.1",
  40. "npm-package-arg": "^12.0.0",
  41. "proc-log": "^5.0.0"
  42. },
  43. "devDependencies": {
  44. "@npmcli/eslint-config": "^5.0.0",
  45. "@npmcli/template-oss": "4.23.4",
  46. "cacache": "^19.0.1",
  47. "nock": "^13.2.4",
  48. "require-inject": "^1.4.4",
  49. "ssri": "^12.0.0",
  50. "tap": "^16.0.1"
  51. },
  52. "tap": {
  53. "check-coverage": true,
  54. "test-ignore": "test[\\\\/](util|cache)[\\\\/]",
  55. "nyc-arg": [
  56. "--exclude",
  57. "tap-snapshots/**"
  58. ]
  59. },
  60. "engines": {
  61. "node": "^18.17.0 || >=20.5.0"
  62. },
  63. "templateOSS": {
  64. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  65. "version": "4.23.4",
  66. "publish": "true"
  67. }
  68. }