package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "micromatch",
  3. "description": "Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.",
  4. "version": "4.0.7",
  5. "homepage": "https://github.com/micromatch/micromatch",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "(https://github.com/DianeLooney)",
  9. "Amila Welihinda (amilajack.com)",
  10. "Bogdan Chadkin (https://github.com/TrySound)",
  11. "Brian Woodward (https://twitter.com/doowb)",
  12. "Devon Govett (http://badassjs.com)",
  13. "Elan Shanker (https://github.com/es128)",
  14. "Fabrício Matté (https://ultcombo.js.org)",
  15. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  16. "Martin Kolárik (https://kolarik.sk)",
  17. "Olsten Larck (https://i.am.charlike.online)",
  18. "Paul Miller (paulmillr.com)",
  19. "Tom Byrer (https://github.com/tomByrer)",
  20. "Tyler Akins (http://rumkin.com)",
  21. "Peter Bright <drpizza@quiscalusmexicanus.org> (https://github.com/drpizza)",
  22. "Kuba Juszczyk (https://github.com/ku8ar)"
  23. ],
  24. "repository": "micromatch/micromatch",
  25. "bugs": {
  26. "url": "https://github.com/micromatch/micromatch/issues"
  27. },
  28. "license": "MIT",
  29. "files": ["index.js"],
  30. "main": "index.js",
  31. "engines": {
  32. "node": ">=8.6"
  33. },
  34. "scripts": {
  35. "test": "mocha"
  36. },
  37. "dependencies": {
  38. "braces": "^3.0.3",
  39. "picomatch": "^2.3.1"
  40. },
  41. "devDependencies": {
  42. "fill-range": "^7.0.1",
  43. "gulp-format-md": "^2.0.0",
  44. "minimatch": "^5.0.1",
  45. "mocha": "^9.2.2",
  46. "time-require": "github:jonschlinkert/time-require"
  47. },
  48. "keywords": [
  49. "bash",
  50. "bracket",
  51. "character-class",
  52. "expand",
  53. "expansion",
  54. "expression",
  55. "extglob",
  56. "extglobs",
  57. "file",
  58. "files",
  59. "filter",
  60. "find",
  61. "glob",
  62. "globbing",
  63. "globs",
  64. "globstar",
  65. "lookahead",
  66. "lookaround",
  67. "lookbehind",
  68. "match",
  69. "matcher",
  70. "matches",
  71. "matching",
  72. "micromatch",
  73. "minimatch",
  74. "multimatch",
  75. "negate",
  76. "negation",
  77. "path",
  78. "pattern",
  79. "patterns",
  80. "posix",
  81. "regex",
  82. "regexp",
  83. "regular",
  84. "shell",
  85. "star",
  86. "wildcard"
  87. ],
  88. "verb": {
  89. "toc": "collapsible",
  90. "layout": "default",
  91. "tasks": ["readme"],
  92. "plugins": ["gulp-format-md"],
  93. "lint": {
  94. "reflinks": true
  95. },
  96. "related": {
  97. "list": ["braces", "expand-brackets", "extglob", "fill-range", "nanomatch"]
  98. },
  99. "reflinks": ["extglob", "fill-range", "glob-object", "minimatch", "multimatch"]
  100. }
  101. }