package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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": "3.1.0",
  5. "homepage": "https://github.com/micromatch/micromatch",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Amila Welihinda (amilajack.com)",
  9. "Bogdan Chadkin (https://github.com/TrySound)",
  10. "Brian Woodward (https://twitter.com/doowb)",
  11. "Elan Shanker (https://github.com/es128)",
  12. "Fabrício Matté (https://ultcombo.js.org)",
  13. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  14. "Martin Kolárik (https://kolarik.sk)",
  15. "Paul Miller (paulmillr.com)",
  16. "Tom Byrer (https://github.com/tomByrer)",
  17. "tunnckoCore (https://i.am.charlike.online)",
  18. "Tyler Akins (http://rumkin.com)",
  19. "(https://github.com/DianeLooney)"
  20. ],
  21. "repository": "micromatch/micromatch",
  22. "bugs": {
  23. "url": "https://github.com/micromatch/micromatch/issues"
  24. },
  25. "license": "MIT",
  26. "files": [
  27. "index.js",
  28. "lib"
  29. ],
  30. "main": "index.js",
  31. "engines": {
  32. "node": ">=0.10.0"
  33. },
  34. "scripts": {
  35. "test": "mocha"
  36. },
  37. "dependencies": {
  38. "arr-diff": "^4.0.0",
  39. "array-unique": "^0.3.2",
  40. "braces": "^2.2.2",
  41. "define-property": "^1.0.0",
  42. "extend-shallow": "^2.0.1",
  43. "extglob": "^2.0.2",
  44. "fragment-cache": "^0.2.1",
  45. "kind-of": "^5.0.2",
  46. "nanomatch": "^1.2.1",
  47. "object.pick": "^1.3.0",
  48. "regex-not": "^1.0.0",
  49. "snapdragon": "^0.8.1",
  50. "to-regex": "^3.0.1"
  51. },
  52. "devDependencies": {
  53. "bash-match": "^1.0.2",
  54. "for-own": "^1.0.0",
  55. "gulp": "^3.9.1",
  56. "gulp-format-md": "^1.0.0",
  57. "gulp-istanbul": "^1.1.2",
  58. "gulp-mocha": "^3.0.1",
  59. "gulp-unused": "^0.2.1",
  60. "is-windows": "^1.0.1",
  61. "minimatch": "^3.0.4",
  62. "minimist": "^1.2.0",
  63. "mocha": "^3.5.0",
  64. "multimatch": "^2.1.0"
  65. },
  66. "keywords": [
  67. "bash",
  68. "expand",
  69. "expansion",
  70. "expression",
  71. "file",
  72. "files",
  73. "filter",
  74. "find",
  75. "glob",
  76. "globbing",
  77. "globs",
  78. "globstar",
  79. "match",
  80. "matcher",
  81. "matches",
  82. "matching",
  83. "micromatch",
  84. "minimatch",
  85. "multimatch",
  86. "path",
  87. "pattern",
  88. "patterns",
  89. "regex",
  90. "regexp",
  91. "regular",
  92. "shell",
  93. "wildcard"
  94. ],
  95. "lintDeps": {
  96. "dependencies": {
  97. "options": {
  98. "lock": {
  99. "snapdragon": "^0.8.1"
  100. }
  101. }
  102. },
  103. "devDependencies": {
  104. "files": {
  105. "options": {
  106. "ignore": [
  107. "benchmark/**"
  108. ]
  109. }
  110. }
  111. }
  112. },
  113. "verb": {
  114. "toc": "collapsible",
  115. "layout": "default",
  116. "tasks": [
  117. "readme"
  118. ],
  119. "plugins": [
  120. "gulp-format-md"
  121. ],
  122. "helpers": [
  123. "./benchmark/helper.js"
  124. ],
  125. "related": {
  126. "list": [
  127. "braces",
  128. "expand-brackets",
  129. "extglob",
  130. "fill-range",
  131. "nanomatch"
  132. ]
  133. },
  134. "lint": {
  135. "reflinks": true
  136. },
  137. "reflinks": [
  138. "expand-brackets",
  139. "extglob",
  140. "glob-object",
  141. "minimatch",
  142. "multimatch",
  143. "snapdragon"
  144. ]
  145. }
  146. }