Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "cacache",
  3. "version": "16.1.3",
  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. "preversion": "npm test",
  16. "postversion": "npm publish",
  17. "prepublishOnly": "git push origin --follow-tags",
  18. "test": "tap",
  19. "snap": "tap",
  20. "coverage": "tap",
  21. "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
  22. "lint": "eslint \"**/*.js\"",
  23. "npmclilint": "npmcli-lint",
  24. "lintfix": "npm run lint -- --fix",
  25. "postsnap": "npm run lintfix --",
  26. "postlint": "template-oss-check",
  27. "posttest": "npm run lint",
  28. "template-oss-apply": "template-oss-apply --force"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/npm/cacache.git"
  33. },
  34. "keywords": [
  35. "cache",
  36. "caching",
  37. "content-addressable",
  38. "sri",
  39. "sri hash",
  40. "subresource integrity",
  41. "cache",
  42. "storage",
  43. "store",
  44. "file store",
  45. "filesystem",
  46. "disk cache",
  47. "disk storage"
  48. ],
  49. "license": "ISC",
  50. "dependencies": {
  51. "@npmcli/fs": "^2.1.0",
  52. "@npmcli/move-file": "^2.0.0",
  53. "chownr": "^2.0.0",
  54. "fs-minipass": "^2.1.0",
  55. "glob": "^8.0.1",
  56. "infer-owner": "^1.0.4",
  57. "lru-cache": "^7.7.1",
  58. "minipass": "^3.1.6",
  59. "minipass-collect": "^1.0.2",
  60. "minipass-flush": "^1.0.5",
  61. "minipass-pipeline": "^1.2.4",
  62. "mkdirp": "^1.0.4",
  63. "p-map": "^4.0.0",
  64. "promise-inflight": "^1.0.1",
  65. "rimraf": "^3.0.2",
  66. "ssri": "^9.0.0",
  67. "tar": "^6.1.11",
  68. "unique-filename": "^2.0.0"
  69. },
  70. "devDependencies": {
  71. "@npmcli/eslint-config": "^3.0.1",
  72. "@npmcli/template-oss": "3.5.0",
  73. "tap": "^16.0.0"
  74. },
  75. "engines": {
  76. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  77. },
  78. "templateOSS": {
  79. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  80. "windowsCI": false,
  81. "version": "3.5.0"
  82. },
  83. "author": "GitHub Inc."
  84. }