package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "expand-brackets",
  3. "description": "Expand POSIX bracket expressions (character classes) in glob patterns.",
  4. "version": "2.1.4",
  5. "homepage": "https://github.com/jonschlinkert/expand-brackets",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Elan Shanker (https://github.com/es128)",
  9. "Eugene Sharygin (https://github.com/eush77)",
  10. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
  11. "Martin Kolárik <martin@kolarik.sk> (http://kolarik.sk)"
  12. ],
  13. "repository": "jonschlinkert/expand-brackets",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/expand-brackets/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js",
  20. "lib"
  21. ],
  22. "main": "index.js",
  23. "engines": {
  24. "node": ">=0.10.0"
  25. },
  26. "scripts": {
  27. "test": "mocha"
  28. },
  29. "dependencies": {
  30. "debug": "^2.3.3",
  31. "define-property": "^0.2.5",
  32. "extend-shallow": "^2.0.1",
  33. "posix-character-classes": "^0.1.0",
  34. "regex-not": "^1.0.0",
  35. "snapdragon": "^0.8.1",
  36. "to-regex": "^3.0.1"
  37. },
  38. "devDependencies": {
  39. "bash-match": "^0.1.1",
  40. "gulp-format-md": "^0.1.10",
  41. "helper-changelog": "^0.3.0",
  42. "minimatch": "^3.0.3",
  43. "mocha": "^3.0.2",
  44. "multimatch": "^2.1.0",
  45. "yargs-parser": "^4.0.0"
  46. },
  47. "keywords": [
  48. "bracket",
  49. "brackets",
  50. "character class",
  51. "expand",
  52. "expression",
  53. "posix"
  54. ],
  55. "verb": {
  56. "run": true,
  57. "toc": false,
  58. "layout": "default",
  59. "tasks": [
  60. "readme"
  61. ],
  62. "plugins": [
  63. "gulp-format-md"
  64. ],
  65. "helpers": [
  66. "helper-changelog"
  67. ],
  68. "related": {
  69. "list": [
  70. "braces",
  71. "extglob",
  72. "micromatch",
  73. "nanomatch"
  74. ]
  75. },
  76. "reflinks": [
  77. "micromatch",
  78. "verb",
  79. "verb-generate-readme"
  80. ],
  81. "lint": {
  82. "reflinks": true
  83. }
  84. }
  85. }