зеркало из https://github.com/twbs/bootlint.git
102 строки
2.3 KiB
JSON
102 строки
2.3 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",
|
|
"scripts": {
|
|
"browserify": "browserify src/bootlint.js | node build/stamp.js > dist/browser/bootlint.js",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"dist": "npm run browserify",
|
|
"eslint": "eslint \"**/*.js\"",
|
|
"lint": "npm run eslint",
|
|
"nodeunit": "nodeunit test",
|
|
"qunit": "node build/phantom.js",
|
|
"start": "node ./bin/www",
|
|
"test": "npm run eslint && npm run dist && npm run nodeunit && npm run qunit",
|
|
"travis": "nyc npm test"
|
|
},
|
|
"dependencies": {
|
|
"binary-search": "^1.3.2",
|
|
"bluebird": "^3.5.1",
|
|
"body-parser": "^1.18.2",
|
|
"chalk": "^2.3.0",
|
|
"cheerio": "^0.22.0",
|
|
"commander": "^2.11.0",
|
|
"debug": "^3.1.0",
|
|
"express": "^4.16.2",
|
|
"glob": "^7.1.2",
|
|
"morgan": "^1.9.0",
|
|
"semver": "^5.4.1",
|
|
"void-elements": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^2.6.0",
|
|
"browserify": "^14.5.0",
|
|
"coveralls": "^3.0.0",
|
|
"eslint": "^4.11.0",
|
|
"jquery": "^3.2.1",
|
|
"node-qunit-phantomjs": "^1.6.1",
|
|
"nodeunit": "^0.11.2",
|
|
"nyc": "^11.3.0",
|
|
"qunitjs": "^2.4.1",
|
|
"rewire": "^3.0.2",
|
|
"sinon": "^4.1.2"
|
|
},
|
|
"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
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"src/**/*.js"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"src",
|
|
"app.js"
|
|
]
|
|
}
|