-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "html-minifier-lint",
"description": "HTML Linter based on HTMLMinifier.",
"version": "2.0.0",
"keywords": [
"check",
"checker",
"cli",
"html",
"lint",
"linter",
"validate",
"validator"
],
"homepage": "http://kangax.github.io/html-lint/",
"author": "Juriy \"kangax\" Zaytsev",
"maintainers": [
"Alex Lam <alexlamsl@gmail.com>",
"Juriy Zaytsev <kangax@gmail.com> (http://perfectionkills.com)"
],
"contributors": [
"Gilmore Davidson (https://github.com/gilmoreorless)",
"Hugo Wetterberg <hugo@wetterberg.nu>",
"Zoltan Frombach <tssajo@gmail.com>"
],
"license": "MIT",
"bin": {
"html-minifier-lint": "./cli.js"
},
"main": "src/htmllint.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kangax/html-lint.git"
},
"bugs": {
"url": "https://github.com/kangax/html-lint/issues"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"dist": "grunt dist",
"test": "grunt test"
},
"dependencies": {
"html-minifier": "3.x"
},
"devDependencies": {
"grunt": "1.0.x",
"grunt-browserify": "5.0.x",
"grunt-contrib-uglify": "2.0.x",
"grunt-eslint": "19.0.x",
"phantomjs-prebuilt": "2.1.x",
"qunitjs": "2.x"
},
"files": [
"src/*.js",
"cli.js"
]
}