package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "globby",
  3. "version": "11.1.0",
  4. "description": "User-friendly glob matching",
  5. "license": "MIT",
  6. "repository": "sindresorhus/globby",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "email": "sindresorhus@gmail.com",
  10. "name": "Sindre Sorhus",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "bench": "npm update glob-stream fast-glob && matcha bench.js",
  18. "test": "xo && ava && tsd"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts",
  23. "gitignore.js",
  24. "stream-utils.js"
  25. ],
  26. "keywords": [
  27. "all",
  28. "array",
  29. "directories",
  30. "expand",
  31. "files",
  32. "filesystem",
  33. "filter",
  34. "find",
  35. "fnmatch",
  36. "folders",
  37. "fs",
  38. "glob",
  39. "globbing",
  40. "globs",
  41. "gulpfriendly",
  42. "match",
  43. "matcher",
  44. "minimatch",
  45. "multi",
  46. "multiple",
  47. "paths",
  48. "pattern",
  49. "patterns",
  50. "traverse",
  51. "util",
  52. "utility",
  53. "wildcard",
  54. "wildcards",
  55. "promise",
  56. "gitignore",
  57. "git"
  58. ],
  59. "dependencies": {
  60. "array-union": "^2.1.0",
  61. "dir-glob": "^3.0.1",
  62. "fast-glob": "^3.2.9",
  63. "ignore": "^5.2.0",
  64. "merge2": "^1.4.1",
  65. "slash": "^3.0.0"
  66. },
  67. "devDependencies": {
  68. "ava": "^3.13.0",
  69. "get-stream": "^6.0.0",
  70. "glob-stream": "^6.1.0",
  71. "globby": "sindresorhus/globby#main",
  72. "matcha": "^0.7.0",
  73. "rimraf": "^3.0.2",
  74. "tsd": "^0.13.1",
  75. "xo": "^0.33.1"
  76. },
  77. "xo": {
  78. "ignores": [
  79. "fixtures"
  80. ]
  81. }
  82. }