package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "expand-brackets",
  3. "description": "Expand POSIX bracket expressions (character classes) in glob patterns.",
  4. "version": "0.1.5",
  5. "homepage": "https://github.com/jonschlinkert/expand-brackets",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/expand-brackets",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/expand-brackets/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. "is-posix-bracket": "^0.1.0"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^0.1.7",
  27. "mocha": "^2.2.5",
  28. "should": "^7.0.2"
  29. },
  30. "keywords": [
  31. "bracket",
  32. "character class",
  33. "expression",
  34. "posix"
  35. ],
  36. "verb": {
  37. "run": true,
  38. "toc": false,
  39. "layout": "default",
  40. "tasks": [
  41. "readme"
  42. ],
  43. "plugins": [
  44. "gulp-format-md"
  45. ],
  46. "related": {
  47. "list": [
  48. "extglob",
  49. "is-extglob",
  50. "is-glob",
  51. "is-posix-bracket",
  52. "micromatch"
  53. ]
  54. },
  55. "reflinks": [
  56. "verb"
  57. ],
  58. "lint": {
  59. "reflinks": true
  60. }
  61. }
  62. }