-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
50 lines (50 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "gulp-plumber",
"version": "1.2.1",
"description": "Prevent pipe breaking caused by errors from gulp plugins",
"keywords": [
"gulpplugin"
],
"homepage": "https://github.com/floatdrop/gulp-plumber",
"bugs": "https://github.com/floatdrop/gulp-plumber/issues",
"author": {
"name": "Vsevolod Strukchinsky",
"email": "[email protected]",
"url": "https://github.com/floatdrop"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/floatdrop/gulp-plumber.git"
},
"scripts": {
"test": "xo && mocha -R spec"
},
"dependencies": {
"chalk": "^1.1.3",
"fancy-log": "^1.3.2",
"plugin-error": "^0.1.2",
"through2": "^2.0.3"
},
"devDependencies": {
"coveralls": "^2.11.6",
"event-stream": "3.3.4",
"gulp": "^3.9.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.0.0",
"should": "^8.2.2",
"through": "^2.3.8",
"xo": "^0.12.1"
},
"engines": {
"node": ">=0.10",
"npm": ">=1.2.10"
},
"xo": {
"ignore": [
"test/**"
]
},
"license": "MIT"
}