63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "glob-stream",
|
|
"version": "8.0.2",
|
|
"description": "Readable streamx interface over anymatch.",
|
|
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
|
|
"contributors": [
|
|
"Eric Schoffstall <yo@contra.io>",
|
|
"Blaine Bublitz <blaine.bublitz@gmail.com>"
|
|
],
|
|
"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"
|
|
]
|
|
}
|