package.json 991 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "find-up",
  3. "version": "6.3.0",
  4. "description": "Find a file or directory by walking up parent directories",
  5. "license": "MIT",
  6. "repository": "sindresorhus/find-up",
  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. "find",
  27. "up",
  28. "find-up",
  29. "findup",
  30. "look-up",
  31. "look",
  32. "file",
  33. "search",
  34. "match",
  35. "package",
  36. "resolve",
  37. "parent",
  38. "parents",
  39. "folder",
  40. "directory",
  41. "walk",
  42. "walking",
  43. "path"
  44. ],
  45. "dependencies": {
  46. "locate-path": "^7.1.0",
  47. "path-exists": "^5.0.0"
  48. },
  49. "devDependencies": {
  50. "ava": "^3.15.0",
  51. "is-path-inside": "^4.0.0",
  52. "tempy": "^2.0.0",
  53. "tsd": "^0.17.0",
  54. "xo": "^0.44.0"
  55. }
  56. }