-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 888 Bytes
/
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
{
"name": "gulp-eslint-threshold",
"version": "0.1.1",
"description": "A simple gulp stream plugin for counting warnings from gulp-eslint and call a callback function when the number rises above a threshold you set.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/krmbkt/gulp-eslint-threshold"
},
"scripts": {
"pretest": "eslint index.js",
"test": "echo \"No test specified\" && exit 1",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha"
},
"keywords": [
"gulp",
"eslint",
"gulpplugin",
"gulp-eslint",
"reporter",
"build"
],
"author": "krmbkt",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"should": "^7.0.2"
},
"engines": {
"node": ">=0.12"
}
}