package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "fs-exists-sync",
  3. "description": "Drop-in replacement for `fs.existsSync` with zero dependencies. Other libs I found either have crucial differences from fs.existsSync, or unnecessary dependencies. See README.md for more info.",
  4. "version": "0.1.0",
  5. "homepage": "https://github.com/jonschlinkert/fs-exists-sync",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/fs-exists-sync",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/fs-exists-sync/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.7",
  24. "mocha": "^2.4.5"
  25. },
  26. "keywords": [
  27. "access",
  28. "check",
  29. "exist",
  30. "exists",
  31. "file",
  32. "file-system",
  33. "filepath",
  34. "filesystem",
  35. "fs",
  36. "is-file",
  37. "isfile",
  38. "path",
  39. "stat",
  40. "sync"
  41. ],
  42. "verb": {
  43. "layout": "default",
  44. "plugins": [
  45. "gulp-format-md"
  46. ],
  47. "reflinks": [
  48. "verb",
  49. "path-exists",
  50. "fs-exists",
  51. "file-exists",
  52. "exists"
  53. ],
  54. "related": {
  55. "list": [
  56. "try-open",
  57. "parse-filepath",
  58. "is-absolute"
  59. ]
  60. },
  61. "run": true,
  62. "toc": false,
  63. "tasks": [
  64. "readme"
  65. ],
  66. "lint": {
  67. "reflinks": true
  68. }
  69. }
  70. }