package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "pacote",
  3. "version": "20.0.0",
  4. "description": "JavaScript package downloader",
  5. "author": "GitHub Inc.",
  6. "bin": {
  7. "pacote": "bin/index.js"
  8. },
  9. "license": "ISC",
  10. "main": "lib/index.js",
  11. "scripts": {
  12. "test": "tap",
  13. "snap": "tap",
  14. "lint": "npm run eslint",
  15. "postlint": "template-oss-check",
  16. "lintfix": "npm run eslint -- --fix",
  17. "posttest": "npm run lint",
  18. "template-oss-apply": "template-oss-apply --force",
  19. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  20. },
  21. "tap": {
  22. "timeout": 300,
  23. "nyc-arg": [
  24. "--exclude",
  25. "tap-snapshots/**"
  26. ]
  27. },
  28. "devDependencies": {
  29. "@npmcli/arborist": "^7.1.0",
  30. "@npmcli/eslint-config": "^5.0.0",
  31. "@npmcli/template-oss": "4.23.3",
  32. "hosted-git-info": "^8.0.0",
  33. "mutate-fs": "^2.1.1",
  34. "nock": "^13.2.4",
  35. "npm-registry-mock": "^1.3.2",
  36. "tap": "^16.0.1"
  37. },
  38. "files": [
  39. "bin/",
  40. "lib/"
  41. ],
  42. "keywords": [
  43. "packages",
  44. "npm",
  45. "git"
  46. ],
  47. "dependencies": {
  48. "@npmcli/git": "^6.0.0",
  49. "@npmcli/installed-package-contents": "^3.0.0",
  50. "@npmcli/package-json": "^6.0.0",
  51. "@npmcli/promise-spawn": "^8.0.0",
  52. "@npmcli/run-script": "^9.0.0",
  53. "cacache": "^19.0.0",
  54. "fs-minipass": "^3.0.0",
  55. "minipass": "^7.0.2",
  56. "npm-package-arg": "^12.0.0",
  57. "npm-packlist": "^9.0.0",
  58. "npm-pick-manifest": "^10.0.0",
  59. "npm-registry-fetch": "^18.0.0",
  60. "proc-log": "^5.0.0",
  61. "promise-retry": "^2.0.1",
  62. "sigstore": "^3.0.0",
  63. "ssri": "^12.0.0",
  64. "tar": "^6.1.11"
  65. },
  66. "engines": {
  67. "node": "^18.17.0 || >=20.5.0"
  68. },
  69. "repository": {
  70. "type": "git",
  71. "url": "git+https://github.com/npm/pacote.git"
  72. },
  73. "templateOSS": {
  74. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  75. "version": "4.23.3",
  76. "windowsCI": false,
  77. "publish": "true"
  78. }
  79. }