2014-07-11 09:50:03 +04:00
|
|
|
{
|
2014-07-19 07:04:57 +04:00
|
|
|
"name": "bootlint",
|
2014-09-24 04:36:04 +04:00
|
|
|
"version": "0.2.0",
|
2014-07-19 07:04:57 +04:00
|
|
|
"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",
|
2014-09-25 12:17:07 +04:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/twbs/bootlint/issues"
|
|
|
|
},
|
2014-07-19 07:04:57 +04:00
|
|
|
"author": {
|
|
|
|
"name": "Chris Rebert",
|
|
|
|
"email": "code@rebertia.com",
|
|
|
|
"url": "http://chrisrebert.com"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2014-09-24 02:24:19 +04:00
|
|
|
"url": "https://github.com/twbs/bootlint"
|
2014-07-19 07:04:57 +04:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
|
|
|
"grunt-banner": "^0.2.3",
|
2014-09-16 02:33:43 +04:00
|
|
|
"grunt-browserify": "^3.0.1",
|
2014-09-16 02:29:54 +04:00
|
|
|
"grunt-contrib-clean": "^0.6.0",
|
2014-07-19 07:04:57 +04:00
|
|
|
"grunt-contrib-jshint": "^0.10.0",
|
|
|
|
"grunt-contrib-nodeunit": "^0.4.1",
|
|
|
|
"grunt-contrib-qunit": "^0.5.2",
|
|
|
|
"grunt-contrib-watch": "^0.6.1",
|
2014-09-25 13:14:33 +04:00
|
|
|
"grunt-eslint": "^1.1.0",
|
2014-09-16 02:28:13 +04:00
|
|
|
"grunt-jscs": "^0.7.1",
|
2014-07-19 07:04:57 +04:00
|
|
|
"jquery": "~2.1.1",
|
|
|
|
"load-grunt-tasks": "^0.6.0",
|
2014-09-16 02:29:11 +04:00
|
|
|
"time-grunt": "^1.0.0"
|
2014-07-19 07:04:57 +04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2014-09-25 17:51:44 +04:00
|
|
|
"cheerio": "^0.17.0",
|
|
|
|
"glob": "^4.0.6"
|
2014-07-19 07:04:57 +04:00
|
|
|
},
|
2014-07-26 13:23:17 +04:00
|
|
|
"main": "./src/bootlint.js",
|
2014-09-25 12:17:07 +04:00
|
|
|
"bin": {
|
|
|
|
"bootlint": "./src/cli.js"
|
|
|
|
},
|
2014-07-19 07:04:57 +04:00
|
|
|
"browser": {
|
|
|
|
"cheerio": "jquery",
|
|
|
|
"src/cli.js": false
|
|
|
|
},
|
2014-09-25 03:07:51 +04:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"src",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
2014-07-19 07:04:57 +04:00
|
|
|
"scripts": {
|
|
|
|
"test": "grunt test"
|
|
|
|
}
|
2014-07-11 09:50:03 +04:00
|
|
|
}
|