forked from kangax/html-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.55 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
{
"name": "html-minifier",
"description": "HTML minifier with lint-like capabilities.",
"version": "1.0.0",
"keywords": [
"html",
"minifier",
"lint"
],
"homepage": "http://kangax.github.io/html-minifier/",
"author": "Juriy \"kangax\" Zaytsev",
"maintainers": [
"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": "./cli.js"
},
"main": "src/htmlminifier.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kangax/html-minifier.git"
},
"bugs": {
"url": "https://github.com/kangax/html-minifier/issues"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"change-case": "2.3.x",
"clean-css": "3.4.x",
"cli": "0.11.x",
"concat-stream": "1.5.x",
"relateurl": "0.2.x",
"uglify-js": "2.6.x"
},
"devDependencies": {
"chalk": "1.1.x",
"cli-table": "0.3.x",
"grunt": "0.4.x",
"grunt-contrib-concat": "0.5.x",
"grunt-contrib-jshint": "0.11.x",
"grunt-contrib-qunit": "0.7.x",
"grunt-contrib-uglify": "0.10.x",
"grunt-exec": "0.4.x",
"grunt-jscs": "2.3.x",
"load-grunt-tasks": "3.3.x",
"qunit": "0.7.x",
"time-grunt": "1.2.x"
},
"files": [
"dist",
"src",
"cli.js",
"sample-cli-config-file.conf",
"CHANGELOG.md",
"LICENSE"
]
}