package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "cacache",
  3. "version": "15.3.0",
  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": "index.js",
  10. "files": [
  11. "*.js",
  12. "lib"
  13. ],
  14. "scripts": {
  15. "benchmarks": "node test/benchmarks",
  16. "preversion": "npm test",
  17. "postversion": "npm publish",
  18. "prepublishOnly": "git push origin --follow-tags",
  19. "test": "tap",
  20. "snap": "tap",
  21. "coverage": "tap",
  22. "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
  23. "lint": "npm run npmclilint -- \"*.*js\" \"lib/**/*.*js\" \"test/**/*.*js\"",
  24. "npmclilint": "npmcli-lint",
  25. "lintfix": "npm run lint -- --fix",
  26. "postsnap": "npm run lintfix --"
  27. },
  28. "repository": "https://github.com/npm/cacache",
  29. "keywords": [
  30. "cache",
  31. "caching",
  32. "content-addressable",
  33. "sri",
  34. "sri hash",
  35. "subresource integrity",
  36. "cache",
  37. "storage",
  38. "store",
  39. "file store",
  40. "filesystem",
  41. "disk cache",
  42. "disk storage"
  43. ],
  44. "license": "ISC",
  45. "dependencies": {
  46. "@npmcli/fs": "^1.0.0",
  47. "@npmcli/move-file": "^1.0.1",
  48. "chownr": "^2.0.0",
  49. "fs-minipass": "^2.0.0",
  50. "glob": "^7.1.4",
  51. "infer-owner": "^1.0.4",
  52. "lru-cache": "^6.0.0",
  53. "minipass": "^3.1.1",
  54. "minipass-collect": "^1.0.2",
  55. "minipass-flush": "^1.0.5",
  56. "minipass-pipeline": "^1.2.2",
  57. "mkdirp": "^1.0.3",
  58. "p-map": "^4.0.0",
  59. "promise-inflight": "^1.0.1",
  60. "rimraf": "^3.0.2",
  61. "ssri": "^8.0.1",
  62. "tar": "^6.0.2",
  63. "unique-filename": "^1.1.1"
  64. },
  65. "devDependencies": {
  66. "@npmcli/lint": "^1.0.1",
  67. "benchmark": "^2.1.4",
  68. "chalk": "^4.0.0",
  69. "require-inject": "^1.4.4",
  70. "tacks": "^1.3.0",
  71. "tap": "^15.0.9"
  72. },
  73. "tap": {
  74. "100": true,
  75. "test-regex": "test/[^/]*.js"
  76. },
  77. "engines": {
  78. "node": ">= 10"
  79. }
  80. }