package.json 668 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "path-exists",
  3. "version": "2.1.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": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "path",
  23. "exists",
  24. "exist",
  25. "file",
  26. "filepath",
  27. "fs",
  28. "filesystem",
  29. "file-system",
  30. "access",
  31. "stat"
  32. ],
  33. "dependencies": {
  34. "pinkie-promise": "^2.0.0"
  35. },
  36. "devDependencies": {
  37. "ava": "*",
  38. "xo": "*"
  39. }
  40. }