package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "is-dotfile",
  3. "description": "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.",
  4. "version": "1.0.3",
  5. "homepage": "https://github.com/jonschlinkert/is-dotfile",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Evan Lowry (http://exitiumonline.com)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/is-dotfile",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/is-dotfile/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "devDependencies": {
  27. "benchmarked": "^0.1.3",
  28. "dotfile-regex": "^0.1.2",
  29. "gulp-format-md": "^0.1.12",
  30. "mocha": "*"
  31. },
  32. "keywords": [
  33. "detect",
  34. "dot",
  35. "dotfile",
  36. "expression",
  37. "file",
  38. "filepath",
  39. "find",
  40. "fs",
  41. "is",
  42. "match",
  43. "path",
  44. "regex",
  45. "regexp",
  46. "regular"
  47. ],
  48. "verb": {
  49. "related": {
  50. "list": [
  51. "dotdir-regex",
  52. "dotfile-regex",
  53. "is-dotdir",
  54. "is-glob"
  55. ]
  56. },
  57. "toc": false,
  58. "layout": "default",
  59. "tasks": [
  60. "readme"
  61. ],
  62. "plugins": [
  63. "gulp-format-md"
  64. ],
  65. "lint": {
  66. "reflinks": true
  67. }
  68. }
  69. }