package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "braces",
  3. "description": "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.",
  4. "version": "1.8.5",
  5. "homepage": "https://github.com/jonschlinkert/braces",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/braces",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/braces/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "expand-range": "^1.8.1",
  24. "preserve": "^0.2.0",
  25. "repeat-element": "^1.1.2"
  26. },
  27. "devDependencies": {
  28. "benchmarked": "^0.1.5",
  29. "brace-expansion": "^1.1.3",
  30. "chalk": "^1.1.3",
  31. "gulp-format-md": "^0.1.8",
  32. "minimatch": "^3.0.0",
  33. "minimist": "^1.2.0",
  34. "mocha": "^2.4.5",
  35. "should": "^8.3.1"
  36. },
  37. "keywords": [
  38. "alpha",
  39. "alphabetical",
  40. "bash",
  41. "brace",
  42. "expand",
  43. "expansion",
  44. "filepath",
  45. "fill",
  46. "fs",
  47. "glob",
  48. "globbing",
  49. "letter",
  50. "match",
  51. "matches",
  52. "matching",
  53. "number",
  54. "numerical",
  55. "path",
  56. "range",
  57. "ranges",
  58. "sh"
  59. ],
  60. "verb": {
  61. "plugins": [
  62. "gulp-format-md"
  63. ],
  64. "reflinks": [
  65. "verb"
  66. ],
  67. "toc": false,
  68. "layout": "default",
  69. "lint": {
  70. "reflinks": true
  71. },
  72. "tasks": [
  73. "readme"
  74. ],
  75. "related": {
  76. "list": [
  77. "micromatch",
  78. "expand-range",
  79. "fill-range"
  80. ]
  81. }
  82. }
  83. }