This repository has been archived by the owner on Sep 18, 2018. It is now read-only.
forked from twbs/bootlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bootlint",
"version": "0.14.2",
"description": "HTML linter for Bootstrap projects",
"license": "MIT",
"author": "Chris Rebert <code@rebertia.com> (http://chrisrebert.com)",
"contributors": [
"Heinrich Fenkart <hnrch02@gmail.com> (http://hnrch02.me)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootlint.git"
},
"bugs": {
"url": "https://github.com/twbs/bootlint/issues"
},
"homepage": "https://github.com/twbs/bootlint",
"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 .",
"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.4",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.16.0",
"debug": "^3.1.0",
"express": "^4.16.3",
"glob": "^7.1.2",
"morgan": "^1.9.0",
"semver": "^5.5.0",
"void-elements": "^3.1.0"
},
"devDependencies": {
"async": "^2.6.1",
"browserify": "^16.2.2",
"coveralls": "^3.0.2",
"eslint": "^5.1.0",
"jquery": "^3.3.1",
"node-qunit-phantomjs": "^2.0.0",
"nodeunit": "^0.11.3",
"nyc": "^12.0.2",
"qunitjs": "^2.4.1",
"rewire": "^4.0.1",
"sinon": "^6.1.3"
},
"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"
],
"keywords": [
"bootstrap",
"checker",
"correctness",
"html",
"lint",
"linter",
"validator",
"validity"
]
}