package.json 854 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "path-type",
  3. "version": "1.1.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": ">=0.10.0"
  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. "graceful-fs": "^4.1.2",
  40. "pify": "^2.0.0",
  41. "pinkie-promise": "^2.0.0"
  42. },
  43. "devDependencies": {
  44. "ava": "*",
  45. "xo": "*"
  46. },
  47. "xo": {
  48. "ignores": [
  49. "test.js"
  50. ]
  51. }
  52. }