-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "gulp-license-check",
"version": "1.2.1",
"description": "This plugin check a specific header/license in the files",
"license": "MIT",
"repository": "https://github.com/magemello/gulp-license-check",
"author": {
"name": "Mario Romano",
"email": "[email protected]",
"url": "http://magemello.github.io/"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && mocha",
"coverage": "istanbul cover _mocha -- -R spec"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin"
],
"dependencies": {
"gulp-util": "^3.0.7",
"through2": "^2.0.1",
"vinyl-file": "^2.0.0",
"event-stream": "^3.3.2"
},
"devDependencies": {
"coveralls": "^2.11.9",
"fs": "0.0.2",
"gulp": "^3.9.1",
"istanbul": "^0.4.3",
"mocha": "^2.0.1",
"mocha-istanbul": "^0.2.0",
"should": "*",
"xo": "^0.14.0"
},
"xo": {
"overrides": [
{
"files": "test/*.js",
"rules": {
"max-nested-callbacks": 0,
"handle-callback-err": 0
}
}
],
"rules": {
"no-lonely-if" : 0,
"one-var": 0,
"padded-blocks": 0,
"no-mixed-requires": 0,
"quotes": [
2,
"single",
"avoid-escape"
]
}
}
}