package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "globby",
  3. "version": "14.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. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js",
  24. "test": "xo && ava && tsd"
  25. },
  26. "files": [
  27. "index.js",
  28. "index.d.ts",
  29. "ignore.js",
  30. "utilities.js"
  31. ],
  32. "keywords": [
  33. "all",
  34. "array",
  35. "directories",
  36. "expand",
  37. "files",
  38. "filesystem",
  39. "filter",
  40. "find",
  41. "fnmatch",
  42. "folders",
  43. "fs",
  44. "glob",
  45. "globbing",
  46. "globs",
  47. "gulpfriendly",
  48. "match",
  49. "matcher",
  50. "minimatch",
  51. "multi",
  52. "multiple",
  53. "paths",
  54. "pattern",
  55. "patterns",
  56. "traverse",
  57. "util",
  58. "utility",
  59. "wildcard",
  60. "wildcards",
  61. "promise",
  62. "gitignore",
  63. "git"
  64. ],
  65. "dependencies": {
  66. "@sindresorhus/merge-streams": "^2.1.0",
  67. "fast-glob": "^3.3.3",
  68. "ignore": "^7.0.3",
  69. "path-type": "^6.0.0",
  70. "slash": "^5.1.0",
  71. "unicorn-magic": "^0.3.0"
  72. },
  73. "devDependencies": {
  74. "@globby/main-branch": "sindresorhus/globby#main",
  75. "@types/node": "^22.13.1",
  76. "ava": "^5.3.1",
  77. "benchmark": "2.1.4",
  78. "glob-stream": "^8.0.0",
  79. "tempy": "^3.1.0",
  80. "tsd": "^0.31.2",
  81. "xo": "^0.60.0"
  82. },
  83. "xo": {
  84. "ignores": [
  85. "fixtures"
  86. ]
  87. },
  88. "ava": {
  89. "files": [
  90. "!tests/utilities.js"
  91. ],
  92. "workerThreads": false
  93. }
  94. }