package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "name": "nanomatch",
  3. "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)",
  4. "version": "1.2.9",
  5. "homepage": "https://github.com/micromatch/nanomatch",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Devon Govett (http://badassjs.com)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "micromatch/nanomatch",
  12. "bugs": {
  13. "url": "https://github.com/micromatch/nanomatch/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js",
  18. "lib"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "arr-diff": "^4.0.0",
  29. "array-unique": "^0.3.2",
  30. "define-property": "^2.0.2",
  31. "extend-shallow": "^3.0.2",
  32. "fragment-cache": "^0.2.1",
  33. "is-odd": "^2.0.0",
  34. "is-windows": "^1.0.2",
  35. "kind-of": "^6.0.2",
  36. "object.pick": "^1.3.0",
  37. "regex-not": "^1.0.0",
  38. "snapdragon": "^0.8.1",
  39. "to-regex": "^3.0.1"
  40. },
  41. "devDependencies": {
  42. "bash-match": "^1.0.2",
  43. "for-own": "^1.0.0",
  44. "gulp": "^3.9.1",
  45. "gulp-format-md": "^1.0.0",
  46. "gulp-istanbul": "^1.1.3",
  47. "gulp-mocha": "^5.0.0",
  48. "helper-changelog": "^0.3.0",
  49. "minimatch": "^3.0.4",
  50. "minimist": "^1.2.0",
  51. "mocha": "^3.5.3",
  52. "multimatch": "^2.1.0"
  53. },
  54. "keywords": [
  55. "bash",
  56. "expand",
  57. "expansion",
  58. "expression",
  59. "file",
  60. "files",
  61. "filter",
  62. "find",
  63. "glob",
  64. "globbing",
  65. "globs",
  66. "globstar",
  67. "match",
  68. "matcher",
  69. "matches",
  70. "matching",
  71. "micromatch",
  72. "minimatch",
  73. "multimatch",
  74. "nanomatch",
  75. "path",
  76. "pattern",
  77. "patterns",
  78. "regex",
  79. "regexp",
  80. "regular",
  81. "shell",
  82. "wildcard"
  83. ],
  84. "lintDeps": {
  85. "dependencies": {
  86. "options": {
  87. "lock": {
  88. "snapdragon": "^0.8.1"
  89. }
  90. }
  91. },
  92. "devDependencies": {
  93. "files": {
  94. "options": {
  95. "ignore": [
  96. "benchmark/**"
  97. ]
  98. }
  99. }
  100. }
  101. },
  102. "verb": {
  103. "toc": "collapsible",
  104. "layout": "default",
  105. "tasks": [
  106. "readme"
  107. ],
  108. "helpers": [
  109. "helper-changelog"
  110. ],
  111. "plugins": [
  112. "gulp-format-md"
  113. ],
  114. "related": {
  115. "list": [
  116. "extglob",
  117. "is-extglob",
  118. "is-glob",
  119. "micromatch"
  120. ]
  121. },
  122. "reflinks": [
  123. "expand-brackets",
  124. "expand-tilde",
  125. "glob-object",
  126. "micromatch",
  127. "minimatch",
  128. "options",
  129. "snapdragon"
  130. ],
  131. "lint": {
  132. "reflinks": true
  133. }
  134. }
  135. }