htmlhint-loader
Version:
A webpack loader for htmlhint
74 lines (73 loc) • 1.53 kB
JSON
{
"name": "htmlhint-loader",
"version": "1.3.1",
"description": "A webpack loader for htmlhint",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha",
"test:debug": "mocha --inspect --debug-brk",
"codecov": "cat ./coverage/lcov.info | codecov",
"lint": "xo index.js test/test.spec.js",
"start": "mocha --watch",
"preversion": "npm test",
"postversion": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/htmlhint-loader.git"
},
"keywords": [
"webpack",
"loader",
"htmlhint",
"linter",
"lint",
"html"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/htmlhint-loader/issues"
},
"homepage": "https://github.com/mattlewis92/htmlhint-loader#readme",
"dependencies": {
"chalk": "^2.3.2",
"glob": "^7.1.2",
"htmlhint": "^0.9.7",
"loader-utils": "^1.0.2",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"chai": "^4.0.1",
"codecov-lite": "^0.1.3",
"mocha": "^5.0.2",
"nyc": "^11.0.1",
"raw-loader": "^0.5.1",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0",
"strip-ansi": "^4.0.0",
"webpack": "^4.1.0",
"xo": "^0.20.3"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"index.js"
],
"xo": {
"space": true,
"envs": [
"node",
"mocha"
]
},
"nyc": {
"reporter": [
"lcovonly",
"text-summary",
"html"
]
}
}