package.json 691 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "path-exists",
  3. "version": "5.0.0",
  4. "description": "Check if a path exists",
  5. "license": "MIT",
  6. "repository": "sindresorhus/path-exists",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "https://sindresorhus.com"
  11. },
  12. "type": "module",
  13. "exports": "./index.js",
  14. "engines": {
  15. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  16. },
  17. "scripts": {
  18. "test": "xo && ava && tsd"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "path",
  26. "exists",
  27. "exist",
  28. "file",
  29. "filepath",
  30. "fs",
  31. "filesystem",
  32. "file-system",
  33. "access",
  34. "stat"
  35. ],
  36. "devDependencies": {
  37. "ava": "^3.15.0",
  38. "tsd": "^0.17.0",
  39. "xo": "^0.44.0"
  40. }
  41. }