bootlint/package.json

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

2014-07-11 09:50:03 +04:00
{
"name": "bootlint",
2014-09-24 04:36:04 +04:00
"version": "0.2.0",
"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"
},
"repository": {
"type": "git",
2014-09-24 02:24:19 +04:00
"url": "https://github.com/twbs/bootlint"
},
"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",
"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",
"jquery": "~2.1.1",
"load-grunt-tasks": "^0.6.0",
2014-09-16 02:29:11 +04:00
"time-grunt": "^1.0.0"
},
"dependencies": {
"cheerio": "^0.17.0",
"glob": "^4.0.6"
},
"main": "./src/bootlint.js",
"bin": {
"bootlint": "./src/cli.js"
},
"browser": {
"cheerio": "jquery",
"src/cli.js": false
},
"files": [
"dist",
"src",
"LICENSE"
],
"scripts": {
"test": "grunt test"
}
2014-07-11 09:50:03 +04:00
}