Bez popisu

package.json 3.1KB

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