UNPKG

1.1 kBJSONView Raw
1{
2 "name": "plugin-error",
3 "version": "2.0.1",
4 "description": "Error handling for Vinyl plugins.",
5 "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
6 "contributors": [
7 "Jon Schlinkert <jon.schlinkert@sellside.com>",
8 "Blaine Bublitz <blaine.bublitz@gmail.com>"
9 ],
10 "repository": "gulpjs/plugin-error",
11 "license": "MIT",
12 "engines": {
13 "node": ">=10.13.0"
14 },
15 "main": "index.js",
16 "files": [
17 "LICENSE",
18 "index.d.ts",
19 "index.js"
20 ],
21 "scripts": {
22 "lint": "eslint .",
23 "pretest": "npm run lint",
24 "test": "nyc mocha --async-only",
25 "test-types": "tsc -p test/types"
26 },
27 "dependencies": {
28 "ansi-colors": "^1.0.1"
29 },
30 "devDependencies": {
31 "eslint": "^7.0.0",
32 "eslint-config-gulp": "^5.0.0",
33 "eslint-plugin-node": "^11.1.0",
34 "expect": "^27.0.0",
35 "mocha": "^8.0.0",
36 "nyc": "^15.0.0",
37 "typescript": "^4.7.4"
38 },
39 "nyc": {
40 "reporter": [
41 "lcov",
42 "text-summary"
43 ]
44 },
45 "prettier": {
46 "singleQuote": true
47 },
48 "keywords": [
49 "error",
50 "plugin",
51 "gulp-util"
52 ]
53}