bootlint/package.json

98 строки
2.2 KiB
JSON

{
"name": "bootlint",
"version": "0.14.2",
"description": "HTML linter for Bootstrap projects",
"keywords": [
"bootstrap",
"checker",
"correctness",
"html",
"lint",
"linter",
"validator",
"validity"
],
"homepage": "https://github.com/twbs/bootlint",
"bugs": {
"url": "https://github.com/twbs/bootlint/issues"
},
"author": {
"name": "Chris Rebert",
"email": "code@rebertia.com",
"url": "http://chrisrebert.com"
},
"contributors": [
{
"name": "Heinrich Fenkart",
"email": "hnrch02@gmail.com",
"url": "http://hnrch02.me"
}
],
"repository": {
"type": "git",
"url": "https://github.com/twbs/bootlint.git"
},
"license": "MIT",
"dependencies": {
"binary-search": "^1.2.0",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"chalk": "^1.1.1",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"debug": "^2.1.1",
"express": "^4.11.2",
"glob": "^7.0.3",
"morgan": "^1.5.1",
"semver": "^5.0.3",
"void-elements": "^2.0.1"
},
"devDependencies": {
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-qunit": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^18.0.0",
"grunt-exec": "^0.4.6",
"grunt-jscs": "^2.8.0",
"jquery": "^2.2.1",
"jscoverage": "^0.6.0",
"jscs-jsdoc": "^1.3.1",
"load-grunt-tasks": "^3.1.0",
"nodeunit": "^0.9.0",
"npm-shrinkwrap": "^200.1.0",
"rewire": "^2.3.1",
"sinon": "^1.12.2",
"time-grunt": "^1.0.0"
},
"main": "./src/bootlint.js",
"bin": {
"bootlint": "./src/cli-main.js"
},
"browser": {
"binary-search": false,
"cheerio": "jquery",
"url": "./src/url.js",
"./src/cli.js": false,
"./src/cli-main.js": false,
"./src/location.js": false
},
"files": [
"bin",
"dist",
"src",
"app.js",
"LICENSE"
],
"scripts": {
"test": "grunt test",
"coveralls": "jscoverage src && BOOTLINT_COV=1 nodeunit --reporter=lcov test | coveralls",
"start": "./bin/www"
}
}