package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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": "2.0.1",
  5. "homepage": "https://github.com/jonschlinkert/is-glob",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": "jonschlinkert/is-glob",
  11. "bugs": {
  12. "url": "https://github.com/jonschlinkert/is-glob/issues"
  13. },
  14. "license": "MIT",
  15. "files": [
  16. "index.js"
  17. ],
  18. "main": "index.js",
  19. "engines": {
  20. "node": ">=0.10.0"
  21. },
  22. "scripts": {
  23. "test": "mocha"
  24. },
  25. "dependencies": {
  26. "is-extglob": "^1.0.0"
  27. },
  28. "devDependencies": {
  29. "mocha": "*"
  30. },
  31. "keywords": [
  32. "bash",
  33. "braces",
  34. "check",
  35. "exec",
  36. "extglob",
  37. "expression",
  38. "glob",
  39. "globbing",
  40. "globstar",
  41. "match",
  42. "matches",
  43. "pattern",
  44. "regex",
  45. "regular",
  46. "string",
  47. "test"
  48. ],
  49. "verb": {
  50. "related": {
  51. "list": [
  52. "has-glob",
  53. "is-extglob",
  54. "is-posix-bracket",
  55. "is-valid-glob",
  56. "micromatch"
  57. ]
  58. }
  59. },
  60. "__npminstall_done": "Mon May 18 2020 19:19:05 GMT+0800 (CST)",
  61. "_from": "is-glob@2.0.1",
  62. "_resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-2.0.1.tgz"
  63. }