bootlint/package.json

93 строки
2.1 KiB
JSON
Исходник Обычный вид История

2014-07-11 09:50:03 +04:00
{
"name": "bootlint",
2015-01-07 15:00:47 +03:00
"version": "0.9.2",
"description": "HTML linter for Bootstrap projects",
"keywords": [
"bootstrap",
"checker",
"correctness",
"html",
"lint",
"linter",
"validator",
"validity"
],
2014-09-24 02:24:19 +04:00
"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"
},
2014-11-12 04:47:09 +03:00
"contributors": [
{
"name": "Heinrich Fenkart",
"email": "hnrch02@gmail.com",
"url": "http://hnrch02.me"
}
],
"repository": {
"type": "git",
"url": "https://github.com/twbs/bootlint.git"
},
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.2",
2015-01-05 11:46:58 +03:00
"grunt-banner": "^0.3.0",
2014-11-05 12:01:20 +03:00
"grunt-browserify": "^3.2.0",
2014-09-16 02:29:54 +04:00
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-qunit": "^0.5.2",
"grunt-contrib-watch": "^0.6.1",
2015-01-19 06:20:48 +03:00
"grunt-eslint": "^4.0.0",
"grunt-exec": "^0.4.6",
"grunt-jscs": "^1.0.0",
2014-12-20 00:59:12 +03:00
"jquery": "~2.1.3",
2014-11-05 12:01:20 +03:00
"jscoverage": "^0.5.9",
2015-01-05 12:05:46 +03:00
"jscs-jsdoc": "^0.4.0",
2015-01-05 11:59:39 +03:00
"load-grunt-tasks": "^2.0.0",
"nodeunit": "^0.9.0",
"npm-shrinkwrap": "^200.0.0",
2014-09-16 02:29:11 +04:00
"time-grunt": "^1.0.0"
},
"dependencies": {
"binary-search": "^1.2.0",
2014-12-20 00:59:12 +03:00
"bluebird": "^2.4.0",
2014-10-28 13:02:29 +03:00
"body-parser": "^1.9.2",
2014-10-14 15:44:31 +04:00
"chalk": "^0.5.1",
2014-11-06 23:01:11 +03:00
"cheerio": "^0.18.0",
2014-10-28 13:02:29 +03:00
"commander": "^2.5.0",
"debug": "^2.1.0",
2014-11-12 04:47:09 +03:00
"express": "^4.10.2",
2014-12-20 00:59:12 +03:00
"glob": "^4.3.2",
2014-11-12 04:47:09 +03:00
"morgan": "^1.5.0",
2014-10-28 13:02:29 +03:00
"semver": "^4.1.0"
},
"main": "./src/bootlint.js",
"bin": {
"bootlint": "./src/cli.js"
},
"browser": {
"binary-search": false,
"cheerio": "jquery",
"url": "./src/url.js",
"./cli": false,
"./location": 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"
}
2014-07-11 09:50:03 +04:00
}