package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "is-valid-glob",
  3. "description": "Return true if a value is a valid glob pattern or patterns.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-valid-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "contra (http://contra.io)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/is-valid-glob",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/is-valid-glob/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "devDependencies": {
  27. "gulp-format-md": "^0.1.12",
  28. "mocha": "^3.4.2"
  29. },
  30. "keywords": [
  31. "array",
  32. "check",
  33. "glob",
  34. "is",
  35. "match",
  36. "pattern",
  37. "patterns",
  38. "read",
  39. "test",
  40. "valid",
  41. "validate"
  42. ],
  43. "verb": {
  44. "related": {
  45. "list": [
  46. "is-glob",
  47. "micromatch",
  48. "vinyl-fs",
  49. "vinyl"
  50. ]
  51. },
  52. "toc": false,
  53. "layout": "default",
  54. "tasks": [
  55. "readme"
  56. ],
  57. "plugins": [
  58. "gulp-format-md"
  59. ],
  60. "lint": {
  61. "reflinks": true
  62. }
  63. }
  64. }