package.json 860 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "locate-path",
  3. "version": "7.2.0",
  4. "description": "Get the first path that exists on disk of multiple paths",
  5. "license": "MIT",
  6. "repository": "sindresorhus/locate-path",
  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": "^12.20.0 || ^14.13.1 || >=16.0.0"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "locate",
  27. "path",
  28. "paths",
  29. "file",
  30. "files",
  31. "exists",
  32. "find",
  33. "finder",
  34. "search",
  35. "searcher",
  36. "array",
  37. "iterable",
  38. "iterator"
  39. ],
  40. "dependencies": {
  41. "p-locate": "^6.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "^3.15.0",
  45. "tsd": "^0.17.0",
  46. "xo": "^0.44.0"
  47. }
  48. }