grunt-puglint
Version:
Grunt plugin for pug-lint
61 lines (60 loc) • 1.11 kB
JSON
{
"name": "grunt-puglint",
"version": "1.0.0",
"description": "Grunt plugin for pug-lint",
"license": "MIT",
"repository": "mrmlnc/grunt-puglint",
"author": {
"name": "Denis Malinochkin",
"url": "canonium.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && mocha"
},
"files": [
"tasks",
"lib"
],
"keywords": [
"gruntplugin",
"grunt",
"pug",
"pug lint",
"pug hint",
"jade",
"jade lint",
"jade hint",
"lint",
"hint"
],
"devDependencies": {
"grunt": "~1.0.1",
"mocha": "^2.5.3",
"pug-lint-config-clock": "^1.1.1",
"xo": "^0.15.1"
},
"dependencies": {
"chalk": "^1.1.3",
"pug-lint": "^2.2.0",
"text-table": "^0.2.0"
},
"xo": {
"rules": {
"indent": [2, 2, { "SwitchCase": 1 }],
"arrow-parens": [2, "always"],
"object-curly-spacing": [2, "always"],
"babel/object-curly-spacing": 0,
"space-before-function-paren": [2, "never"]
},
"ignores": [
"test/**"
],
"envs": [
"node",
"mocha"
]
}
}