| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "globby",
- "version": "13.1.4",
- "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": "./index.js",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "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": {
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.11",
- "ignore": "^5.2.0",
- "merge2": "^1.4.1",
- "slash": "^4.0.0"
- },
- "devDependencies": {
- "@globby/main-branch": "sindresorhus/globby#main",
- "@types/node": "^17.0.18",
- "ava": "^4.0.1",
- "benchmark": "2.1.4",
- "get-stream": "^6.0.1",
- "glob-stream": "^7.0.0",
- "rimraf": "^3.0.2",
- "tempy": "^3.0.0",
- "tsd": "^0.19.1",
- "typescript": "^4.5.5",
- "xo": "^0.47.0"
- },
- "xo": {
- "ignores": [
- "fixtures"
- ]
- },
- "ava": {
- "files": [
- "!tests/utilities.js"
- ],
- "workerThreads": false
- }
- }
|