mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-25 00:08:20 -05:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "plugin-error",
|
|
"version": "2.0.1",
|
|
"description": "Error handling for Vinyl plugins.",
|
|
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
|
|
"contributors": [
|
|
"Jon Schlinkert <jon.schlinkert@sellside.com>",
|
|
"Blaine Bublitz <blaine.bublitz@gmail.com>"
|
|
],
|
|
"repository": "gulpjs/plugin-error",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"LICENSE",
|
|
"index.d.ts",
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"pretest": "npm run lint",
|
|
"test": "nyc mocha --async-only",
|
|
"test-types": "tsc -p test/types"
|
|
},
|
|
"dependencies": {
|
|
"ansi-colors": "^1.0.1"
|
|
},
|
|
"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.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"lcov",
|
|
"text-summary"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
},
|
|
"keywords": [
|
|
"error",
|
|
"plugin",
|
|
"gulp-util"
|
|
]
|
|
}
|