package.json 793 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "locate-path",
  3. "version": "2.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": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "locate",
  23. "path",
  24. "paths",
  25. "file",
  26. "files",
  27. "exists",
  28. "find",
  29. "finder",
  30. "search",
  31. "searcher",
  32. "array",
  33. "iterable",
  34. "iterator"
  35. ],
  36. "dependencies": {
  37. "p-locate": "^2.0.0",
  38. "path-exists": "^3.0.0"
  39. },
  40. "devDependencies": {
  41. "ava": "*",
  42. "xo": "*"
  43. },
  44. "xo": {
  45. "esnext": true
  46. }
  47. }