Без опису

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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.7",
  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": "^1.0.0",
  31. "extend-shallow": "^2.0.1",
  32. "fragment-cache": "^0.2.1",
  33. "is-odd": "^1.0.0",
  34. "kind-of": "^5.0.2",
  35. "object.pick": "^1.3.0",
  36. "regex-not": "^1.0.0",
  37. "snapdragon": "^0.8.1",
  38. "to-regex": "^3.0.1"
  39. },
  40. "devDependencies": {
  41. "bash-match": "^1.0.2",
  42. "for-own": "^1.0.0",
  43. "gulp": "^3.9.1",
  44. "gulp-format-md": "^1.0.0",
  45. "gulp-istanbul": "^1.1.2",
  46. "gulp-mocha": "^3.0.1",
  47. "gulp-unused": "^0.2.1",
  48. "helper-changelog": "^0.3.0",
  49. "is-windows": "^1.0.1",
  50. "minimatch": "^3.0.4",
  51. "minimist": "^1.2.0",
  52. "mocha": "^3.5.0",
  53. "multimatch": "^2.1.0"
  54. },
  55. "keywords": [
  56. "bash",
  57. "expand",
  58. "expansion",
  59. "expression",
  60. "file",
  61. "files",
  62. "filter",
  63. "find",
  64. "glob",
  65. "globbing",
  66. "globs",
  67. "globstar",
  68. "match",
  69. "matcher",
  70. "matches",
  71. "matching",
  72. "micromatch",
  73. "minimatch",
  74. "multimatch",
  75. "nanomatch",
  76. "path",
  77. "pattern",
  78. "patterns",
  79. "regex",
  80. "regexp",
  81. "regular",
  82. "shell",
  83. "wildcard"
  84. ],
  85. "lintDeps": {
  86. "dependencies": {
  87. "options": {
  88. "lock": {
  89. "snapdragon": "^0.8.1"
  90. }
  91. }
  92. },
  93. "devDependencies": {
  94. "files": {
  95. "options": {
  96. "ignore": [
  97. "benchmark/**"
  98. ]
  99. }
  100. }
  101. }
  102. },
  103. "verb": {
  104. "toc": "collapsible",
  105. "layout": "default",
  106. "tasks": [
  107. "readme"
  108. ],
  109. "helpers": [
  110. "helper-changelog"
  111. ],
  112. "plugins": [
  113. "gulp-format-md"
  114. ],
  115. "related": {
  116. "list": [
  117. "extglob",
  118. "is-extglob",
  119. "is-glob",
  120. "micromatch"
  121. ]
  122. },
  123. "reflinks": [
  124. "expand-brackets",
  125. "expand-tilde",
  126. "glob-object",
  127. "micromatch",
  128. "minimatch",
  129. "options",
  130. "snapdragon"
  131. ],
  132. "lint": {
  133. "reflinks": true
  134. }
  135. }
  136. }