package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "cacache",
  3. "version": "19.0.1",
  4. "cache-version": {
  5. "content": "2",
  6. "index": "5"
  7. },
  8. "description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.",
  9. "main": "lib/index.js",
  10. "files": [
  11. "bin/",
  12. "lib/"
  13. ],
  14. "scripts": {
  15. "test": "tap",
  16. "snap": "tap",
  17. "coverage": "tap",
  18. "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
  19. "lint": "npm run eslint",
  20. "npmclilint": "npmcli-lint",
  21. "lintfix": "npm run eslint -- --fix",
  22. "postsnap": "npm run lintfix --",
  23. "postlint": "template-oss-check",
  24. "posttest": "npm run lint",
  25. "template-oss-apply": "template-oss-apply --force",
  26. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/npm/cacache.git"
  31. },
  32. "keywords": [
  33. "cache",
  34. "caching",
  35. "content-addressable",
  36. "sri",
  37. "sri hash",
  38. "subresource integrity",
  39. "cache",
  40. "storage",
  41. "store",
  42. "file store",
  43. "filesystem",
  44. "disk cache",
  45. "disk storage"
  46. ],
  47. "license": "ISC",
  48. "dependencies": {
  49. "@npmcli/fs": "^4.0.0",
  50. "fs-minipass": "^3.0.0",
  51. "glob": "^10.2.2",
  52. "lru-cache": "^10.0.1",
  53. "minipass": "^7.0.3",
  54. "minipass-collect": "^2.0.1",
  55. "minipass-flush": "^1.0.5",
  56. "minipass-pipeline": "^1.2.4",
  57. "p-map": "^7.0.2",
  58. "ssri": "^12.0.0",
  59. "tar": "^7.4.3",
  60. "unique-filename": "^4.0.0"
  61. },
  62. "devDependencies": {
  63. "@npmcli/eslint-config": "^5.0.0",
  64. "@npmcli/template-oss": "4.23.3",
  65. "tap": "^16.0.0"
  66. },
  67. "engines": {
  68. "node": "^18.17.0 || >=20.5.0"
  69. },
  70. "templateOSS": {
  71. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  72. "windowsCI": false,
  73. "version": "4.23.3",
  74. "publish": "true"
  75. },
  76. "author": "GitHub Inc.",
  77. "tap": {
  78. "nyc-arg": [
  79. "--exclude",
  80. "tap-snapshots/**"
  81. ]
  82. }
  83. }