gulp-license-check
Version:
This plugin check a specific header/license in the files
64 lines (63 loc) • 1.3 kB
JSON
{
"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": "mario.romano83@gmail.com",
"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"
]
}
}
}