package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "globby",
  3. "version": "9.2.0",
  4. "description": "Extends `glob` with support for multiple patterns and exposes a Promise API",
  5. "license": "MIT",
  6. "repository": "sindresorhus/globby",
  7. "author": {
  8. "email": "sindresorhus@gmail.com",
  9. "name": "Sindre Sorhus",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "bench": "npm update glob-stream fast-glob && matcha bench.js",
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "gitignore.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "all",
  26. "array",
  27. "directories",
  28. "dirs",
  29. "expand",
  30. "files",
  31. "filesystem",
  32. "filter",
  33. "find",
  34. "fnmatch",
  35. "folders",
  36. "fs",
  37. "glob",
  38. "globbing",
  39. "globs",
  40. "gulpfriendly",
  41. "match",
  42. "matcher",
  43. "minimatch",
  44. "multi",
  45. "multiple",
  46. "paths",
  47. "pattern",
  48. "patterns",
  49. "traverse",
  50. "util",
  51. "utility",
  52. "wildcard",
  53. "wildcards",
  54. "promise",
  55. "gitignore",
  56. "git"
  57. ],
  58. "dependencies": {
  59. "@types/glob": "^7.1.1",
  60. "array-union": "^1.0.2",
  61. "dir-glob": "^2.2.2",
  62. "fast-glob": "^2.2.6",
  63. "glob": "^7.1.3",
  64. "ignore": "^4.0.3",
  65. "pify": "^4.0.1",
  66. "slash": "^2.0.0"
  67. },
  68. "devDependencies": {
  69. "ava": "^1.4.1",
  70. "glob-stream": "^6.1.0",
  71. "globby": "sindresorhus/globby#master",
  72. "matcha": "^0.7.0",
  73. "rimraf": "^2.6.3",
  74. "tsd": "^0.7.1",
  75. "xo": "^0.24.0"
  76. },
  77. "xo": {
  78. "ignores": [
  79. "fixtures"
  80. ]
  81. }
  82. }