package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "micromatch",
  3. "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.",
  4. "version": "2.3.11",
  5. "homepage": "https://github.com/jonschlinkert/micromatch",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/micromatch",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/micromatch/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js",
  14. "lib"
  15. ],
  16. "main": "index.js",
  17. "engines": {
  18. "node": ">=0.10.0"
  19. },
  20. "scripts": {
  21. "test": "mocha"
  22. },
  23. "dependencies": {
  24. "arr-diff": "^2.0.0",
  25. "array-unique": "^0.2.1",
  26. "braces": "^1.8.2",
  27. "expand-brackets": "^0.1.4",
  28. "extglob": "^0.3.1",
  29. "filename-regex": "^2.0.0",
  30. "is-extglob": "^1.0.0",
  31. "is-glob": "^2.0.1",
  32. "kind-of": "^3.0.2",
  33. "normalize-path": "^2.0.1",
  34. "object.omit": "^2.0.0",
  35. "parse-glob": "^3.0.4",
  36. "regex-cache": "^0.4.2"
  37. },
  38. "devDependencies": {
  39. "benchmarked": "^0.1.4",
  40. "chalk": "^1.1.1",
  41. "gulp": "^3.9.0",
  42. "gulp-eslint": "^1.1.1",
  43. "gulp-format-md": "^0.1.8",
  44. "gulp-istanbul": "^0.10.1",
  45. "gulp-mocha": "^2.1.3",
  46. "minimatch": "^3.0.0",
  47. "minimist": "^1.2.0",
  48. "mocha": "^2",
  49. "multimatch": "^2.0.0",
  50. "should": "^8",
  51. "write": "^0.2.1"
  52. },
  53. "keywords": [
  54. "bash",
  55. "expand",
  56. "expansion",
  57. "expression",
  58. "file",
  59. "files",
  60. "filter",
  61. "find",
  62. "glob",
  63. "globbing",
  64. "globs",
  65. "globstar",
  66. "match",
  67. "matcher",
  68. "matches",
  69. "matching",
  70. "minimatch",
  71. "multimatch",
  72. "path",
  73. "pattern",
  74. "patterns",
  75. "regex",
  76. "regexp",
  77. "regular",
  78. "shell",
  79. "wildcard"
  80. ],
  81. "verb": {
  82. "related": {
  83. "list": [
  84. "braces",
  85. "expand-brackets",
  86. "expand-range",
  87. "extglob",
  88. "fill-range",
  89. "gulp-micromatch",
  90. "is-glob",
  91. "parse-glob"
  92. ]
  93. },
  94. "reflinks": [
  95. "braces",
  96. "expand-brackets",
  97. "extglob",
  98. "minimatch",
  99. "multimatch",
  100. "verb"
  101. ],
  102. "toc": false,
  103. "layout": false,
  104. "tasks": [
  105. "readme"
  106. ],
  107. "plugins": [
  108. "gulp-format-md"
  109. ],
  110. "lint": {
  111. "reflinks": true
  112. }
  113. }
  114. }