package.json 667 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "path-type",
  3. "version": "3.0.0",
  4. "description": "Check if a path is a file, directory, or symlink",
  5. "license": "MIT",
  6. "repository": "sindresorhus/path-type",
  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. "path",
  23. "fs",
  24. "type",
  25. "is",
  26. "check",
  27. "directory",
  28. "dir",
  29. "file",
  30. "filepath",
  31. "symlink",
  32. "symbolic",
  33. "link",
  34. "stat",
  35. "stats",
  36. "filesystem"
  37. ],
  38. "dependencies": {
  39. "pify": "^3.0.0"
  40. },
  41. "devDependencies": {
  42. "ava": "*",
  43. "xo": "*"
  44. }
  45. }