Aucune description

package.json 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "braces",
  3. "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.",
  4. "version": "2.3.0",
  5. "homepage": "https://github.com/micromatch/braces",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Elan Shanker (https://github.com/es128)",
  10. "Eugene Sharygin (https://github.com/eush77)",
  11. "hemanth.hm (http://h3manth.com)",
  12. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  13. ],
  14. "repository": "micromatch/braces",
  15. "bugs": {
  16. "url": "https://github.com/micromatch/braces/issues"
  17. },
  18. "license": "MIT",
  19. "files": [
  20. "index.js",
  21. "lib"
  22. ],
  23. "main": "index.js",
  24. "engines": {
  25. "node": ">=0.10.0"
  26. },
  27. "scripts": {
  28. "test": "mocha",
  29. "benchmark": "node benchmark"
  30. },
  31. "dependencies": {
  32. "arr-flatten": "^1.1.0",
  33. "array-unique": "^0.3.2",
  34. "define-property": "^1.0.0",
  35. "extend-shallow": "^2.0.1",
  36. "fill-range": "^4.0.0",
  37. "isobject": "^3.0.1",
  38. "repeat-element": "^1.1.2",
  39. "snapdragon": "^0.8.1",
  40. "snapdragon-node": "^2.0.1",
  41. "split-string": "^3.0.2",
  42. "to-regex": "^3.0.1"
  43. },
  44. "devDependencies": {
  45. "ansi-cyan": "^0.1.1",
  46. "benchmarked": "^2.0.0",
  47. "brace-expansion": "^1.1.8",
  48. "cross-spawn": "^5.1.0",
  49. "gulp": "^3.9.1",
  50. "gulp-eslint": "^4.0.0",
  51. "gulp-format-md": "^1.0.0",
  52. "gulp-istanbul": "^1.1.2",
  53. "gulp-mocha": "^3.0.1",
  54. "gulp-unused": "^0.2.1",
  55. "is-windows": "^1.0.1",
  56. "minimatch": "^3.0.4",
  57. "mocha": "^3.2.0",
  58. "noncharacters": "^1.1.0",
  59. "pretty-bytes": "^4.0.2",
  60. "text-table": "^0.2.0",
  61. "time-diff": "^0.3.1",
  62. "yargs-parser": "^8.0.0"
  63. },
  64. "keywords": [
  65. "alpha",
  66. "alphabetical",
  67. "bash",
  68. "brace",
  69. "braces",
  70. "expand",
  71. "expansion",
  72. "filepath",
  73. "fill",
  74. "fs",
  75. "glob",
  76. "globbing",
  77. "letter",
  78. "match",
  79. "matches",
  80. "matching",
  81. "number",
  82. "numerical",
  83. "path",
  84. "range",
  85. "ranges",
  86. "sh"
  87. ],
  88. "verb": {
  89. "toc": false,
  90. "layout": "default",
  91. "tasks": [
  92. "readme"
  93. ],
  94. "lint": {
  95. "reflinks": true
  96. },
  97. "plugins": [
  98. "gulp-format-md"
  99. ],
  100. "related": {
  101. "list": [
  102. "expand-brackets",
  103. "extglob",
  104. "fill-range",
  105. "micromatch",
  106. "nanomatch"
  107. ]
  108. }
  109. }
  110. }