{ | |
"name": "glob-stream", | |
"version": "8.0.0", | |
"description": "Readable streamx interface over anymatch.", | |
"author": "Gulp Team <[email protected]> (https://gulpjs.com/)", | |
"contributors": [ | |
"Eric Schoffstall <[email protected]>", | |
"Blaine Bublitz <[email protected]>" | |
], | |
"repository": "gulpjs/glob-stream", | |
"license": "MIT", | |
"engines": { | |
"node": ">=10.13.0" | |
}, | |
"main": "index.js", | |
"files": [ | |
"index.js", | |
"LICENSE" | |
], | |
"scripts": { | |
"lint": "eslint .", | |
"pretest": "npm run lint", | |
"test": "nyc mocha --async-only" | |
}, | |
"dependencies": { | |
"@gulpjs/to-absolute-glob": "^4.0.0", | |
"anymatch": "^3.1.3", | |
"fastq": "^1.13.0", | |
"glob-parent": "^6.0.2", | |
"is-glob": "^4.0.3", | |
"is-negated-glob": "^1.0.0", | |
"normalize-path": "^3.0.0", | |
"streamx": "^2.12.5" | |
}, | |
"devDependencies": { | |
"eslint": "^7.0.0", | |
"eslint-config-gulp": "^5.0.0", | |
"eslint-plugin-node": "^11.1.0", | |
"expect": "^27.0.0", | |
"mocha": "^8.0.0", | |
"nyc": "^15.0.1", | |
"readable-stream": "^3.6.0", | |
"sinon": "^9.2.3" | |
}, | |
"nyc": { | |
"reporter": [ | |
"lcov", | |
"text-summary" | |
] | |
}, | |
"prettier": { | |
"singleQuote": true | |
}, | |
"keywords": [ | |
"glob", | |
"stream", | |
"gulp", | |
"readable", | |
"fs", | |
"files" | |
] | |
} | |