Ei kuvausta

package.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "is-glob",
  3. "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.",
  4. "version": "3.1.0",
  5. "homepage": "https://github.com/jonschlinkert/is-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Daniel Perez <daniel@claudetech.com> (http://tuvistavie.com)",
  9. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/is-glob",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/is-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. "dependencies": {
  27. "is-extglob": "^2.1.0"
  28. },
  29. "devDependencies": {
  30. "gulp-format-md": "^0.1.10",
  31. "mocha": "^3.0.2"
  32. },
  33. "keywords": [
  34. "bash",
  35. "braces",
  36. "check",
  37. "exec",
  38. "expression",
  39. "extglob",
  40. "glob",
  41. "globbing",
  42. "globstar",
  43. "is",
  44. "match",
  45. "matches",
  46. "pattern",
  47. "regex",
  48. "regular",
  49. "string",
  50. "test"
  51. ],
  52. "verb": {
  53. "layout": "default",
  54. "plugins": [
  55. "gulp-format-md"
  56. ],
  57. "related": {
  58. "list": [
  59. "assemble",
  60. "base",
  61. "update",
  62. "verb"
  63. ]
  64. },
  65. "reflinks": [
  66. "assemble",
  67. "bach",
  68. "base",
  69. "composer",
  70. "gulp",
  71. "has-glob",
  72. "is-valid-glob",
  73. "micromatch",
  74. "npm",
  75. "scaffold",
  76. "verb",
  77. "vinyl"
  78. ]
  79. }
  80. }