package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "extglob",
  3. "description": "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.",
  4. "version": "0.3.2",
  5. "homepage": "https://github.com/jonschlinkert/extglob",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/extglob.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/extglob/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-extglob": "^1.0.0"
  30. },
  31. "devDependencies": {
  32. "ansi-green": "^0.1.1",
  33. "micromatch": "^2.1.6",
  34. "minimatch": "^2.0.1",
  35. "minimist": "^1.1.0",
  36. "mocha": "*",
  37. "should": "*",
  38. "success-symbol": "^0.1.0"
  39. },
  40. "keywords": [
  41. "bash",
  42. "extended",
  43. "extglob",
  44. "glob",
  45. "ksh",
  46. "match",
  47. "wildcard"
  48. ],
  49. "verb": {
  50. "related": {
  51. "list": [
  52. "micromatch",
  53. "expand-brackets",
  54. "braces",
  55. "fill-range",
  56. "expand-range"
  57. ]
  58. }
  59. }
  60. }