package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "globby",
  3. "version": "13.1.4",
  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": "./index.js",
  15. "engines": {
  16. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  17. },
  18. "scripts": {
  19. "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js",
  20. "test": "xo && ava && tsd"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts",
  25. "ignore.js",
  26. "utilities.js"
  27. ],
  28. "keywords": [
  29. "all",
  30. "array",
  31. "directories",
  32. "expand",
  33. "files",
  34. "filesystem",
  35. "filter",
  36. "find",
  37. "fnmatch",
  38. "folders",
  39. "fs",
  40. "glob",
  41. "globbing",
  42. "globs",
  43. "gulpfriendly",
  44. "match",
  45. "matcher",
  46. "minimatch",
  47. "multi",
  48. "multiple",
  49. "paths",
  50. "pattern",
  51. "patterns",
  52. "traverse",
  53. "util",
  54. "utility",
  55. "wildcard",
  56. "wildcards",
  57. "promise",
  58. "gitignore",
  59. "git"
  60. ],
  61. "dependencies": {
  62. "dir-glob": "^3.0.1",
  63. "fast-glob": "^3.2.11",
  64. "ignore": "^5.2.0",
  65. "merge2": "^1.4.1",
  66. "slash": "^4.0.0"
  67. },
  68. "devDependencies": {
  69. "@globby/main-branch": "sindresorhus/globby#main",
  70. "@types/node": "^17.0.18",
  71. "ava": "^4.0.1",
  72. "benchmark": "2.1.4",
  73. "get-stream": "^6.0.1",
  74. "glob-stream": "^7.0.0",
  75. "rimraf": "^3.0.2",
  76. "tempy": "^3.0.0",
  77. "tsd": "^0.19.1",
  78. "typescript": "^4.5.5",
  79. "xo": "^0.47.0"
  80. },
  81. "xo": {
  82. "ignores": [
  83. "fixtures"
  84. ]
  85. },
  86. "ava": {
  87. "files": [
  88. "!tests/utilities.js"
  89. ],
  90. "workerThreads": false
  91. }
  92. }