{
	"name": "globby",
	"version": "14.0.1",
	"description": "User-friendly glob matching",
	"license": "MIT",
	"repository": "sindresorhus/globby",
	"funding": "https://github.com/sponsors/sindresorhus",
	"author": {
		"email": "sindresorhus@gmail.com",
		"name": "Sindre Sorhus",
		"url": "https://sindresorhus.com"
	},
	"type": "module",
	"exports": {
		"types": "./index.d.ts",
		"default": "./index.js"
	},
	"sideEffects": false,
	"engines": {
		"node": ">=18"
	},
	"scripts": {
		"bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js",
		"test": "xo && ava && tsd"
	},
	"files": [
		"index.js",
		"index.d.ts",
		"ignore.js",
		"utilities.js"
	],
	"keywords": [
		"all",
		"array",
		"directories",
		"expand",
		"files",
		"filesystem",
		"filter",
		"find",
		"fnmatch",
		"folders",
		"fs",
		"glob",
		"globbing",
		"globs",
		"gulpfriendly",
		"match",
		"matcher",
		"minimatch",
		"multi",
		"multiple",
		"paths",
		"pattern",
		"patterns",
		"traverse",
		"util",
		"utility",
		"wildcard",
		"wildcards",
		"promise",
		"gitignore",
		"git"
	],
	"dependencies": {
		"@sindresorhus/merge-streams": "^2.1.0",
		"fast-glob": "^3.3.2",
		"ignore": "^5.2.4",
		"path-type": "^5.0.0",
		"slash": "^5.1.0",
		"unicorn-magic": "^0.1.0"
	},
	"devDependencies": {
		"@globby/main-branch": "sindresorhus/globby#main",
		"@types/node": "^20.9.0",
		"ava": "^5.3.1",
		"benchmark": "2.1.4",
		"glob-stream": "^8.0.0",
		"tempy": "^3.1.0",
		"tsd": "^0.30.4",
		"xo": "^0.57.0"
	},
	"xo": {
		"ignores": [
			"fixtures"
		]
	},
	"ava": {
		"files": [
			"!tests/utilities.js"
		],
		"workerThreads": false
	}
}