package.json 714 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "path-type",
  3. "version": "4.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": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava && tsd-check"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "path",
  24. "fs",
  25. "type",
  26. "is",
  27. "check",
  28. "directory",
  29. "dir",
  30. "file",
  31. "filepath",
  32. "symlink",
  33. "symbolic",
  34. "link",
  35. "stat",
  36. "stats",
  37. "filesystem"
  38. ],
  39. "devDependencies": {
  40. "ava": "^1.3.1",
  41. "nyc": "^13.3.0",
  42. "tsd-check": "^0.3.0",
  43. "xo": "^0.24.0"
  44. }
  45. }