package.json 973 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "is-valid-glob",
  3. "description": "Return true if a value is a valid glob pattern or patterns.",
  4. "version": "0.3.0",
  5. "homepage": "https://github.com/jonschlinkert/is-valid-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/is-valid-glob",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/is-valid-glob/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. "devDependencies": {
  23. "mocha": "*"
  24. },
  25. "keywords": [
  26. "array",
  27. "check",
  28. "glob",
  29. "match",
  30. "pattern",
  31. "patterns",
  32. "read",
  33. "test",
  34. "valid",
  35. "validate"
  36. ],
  37. "verb": {
  38. "related": {
  39. "list": [
  40. "gulp",
  41. "vinyl-fs",
  42. "is-glob",
  43. "micromatch",
  44. "braces",
  45. "fill-range",
  46. "expand-range",
  47. "glob-fs"
  48. ]
  49. }
  50. }
  51. }