package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "is-directory",
  3. "description": "Returns true if a filepath exists on the file system and it's directory.",
  4. "version": "0.3.1",
  5. "homepage": "https://github.com/jonschlinkert/is-directory",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/is-directory",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/is-directory/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "gulp-format-md": "^0.1.9",
  24. "mocha": "^2.4.5"
  25. },
  26. "keywords": [
  27. "dir",
  28. "directories",
  29. "directory",
  30. "dirs",
  31. "file",
  32. "filepath",
  33. "files",
  34. "fp",
  35. "fs",
  36. "node",
  37. "node.js",
  38. "path",
  39. "paths",
  40. "system"
  41. ],
  42. "verb": {
  43. "toc": false,
  44. "layout": "default",
  45. "tasks": [
  46. "readme"
  47. ],
  48. "plugins": [
  49. "gulp-format-md"
  50. ],
  51. "related": {
  52. "list": [
  53. "is-glob",
  54. "is-relative",
  55. "is-absolute"
  56. ]
  57. },
  58. "lint": {
  59. "reflinks": true
  60. },
  61. "reflinks": [
  62. "verb"
  63. ]
  64. }
  65. }