package.json 720 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "locate-path",
  3. "version": "5.0.0",
  4. "description": "Get the first path that exists on disk of multiple paths",
  5. "license": "MIT",
  6. "repository": "sindresorhus/locate-path",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "locate",
  24. "path",
  25. "paths",
  26. "file",
  27. "files",
  28. "exists",
  29. "find",
  30. "finder",
  31. "search",
  32. "searcher",
  33. "array",
  34. "iterable",
  35. "iterator"
  36. ],
  37. "dependencies": {
  38. "p-locate": "^4.1.0"
  39. },
  40. "devDependencies": {
  41. "ava": "^1.4.1",
  42. "tsd": "^0.7.2",
  43. "xo": "^0.24.0"
  44. }
  45. }