package.json 811 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "find-cache-dir",
  3. "version": "4.0.0",
  4. "description": "Finds the common standard cache directory",
  5. "license": "MIT",
  6. "repository": "sindresorhus/find-cache-dir",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": ">=14.16"
  17. },
  18. "scripts": {
  19. "test": "xo && ava"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "keywords": [
  25. "cache",
  26. "directory",
  27. "dir",
  28. "caching",
  29. "find",
  30. "search"
  31. ],
  32. "dependencies": {
  33. "common-path-prefix": "^3.0.0",
  34. "pkg-dir": "^7.0.0"
  35. },
  36. "devDependencies": {
  37. "ava": "^5.0.1",
  38. "del": "^7.0.0",
  39. "tempy": "^3.0.0",
  40. "xo": "^0.52.4"
  41. },
  42. "ava": {
  43. "workerThreads": false
  44. }
  45. }