forked from kangax/html-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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",
"description": "HTML minifier with lint-like capabilities.",
"version": "0.5.6",
"keywords": [
"html",
"minifier",
"lint"
],
"homepage": "http://kangax.github.io/html-minifier/",
"author": "Juriy \"kangax\" Zaytsev",
"maintainers": [
"Juriy Zaytsev <[email protected]> (http://perfectionkills.com)"
],
"contributors": [
"Gilmore Davidson (https://github.com/gilmoreorless)",
"Hugo Wetterberg <[email protected]>"
],
"license": {
"type": "MIT",
"url": "https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/kangax/html-minifier"
},
"bugs": {
"url": "https://github.com/kangax/html-minifier/issues"
},
"engines": {
"node": ">=0.10.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"clean-css": "2.1.x",
"uglify-js": "2.4.x"
},
"devDependencies": {
"grunt": "0.4.x",
"grunt-contrib-concat": "0.3.x",
"grunt-contrib-jshint": "0.9.x",
"grunt-contrib-qunit": "0.4.x",
"grunt-contrib-uglify": "0.4.x",
"grunt-exec": "0.4.x",
"grunt-jscs-checker": "0.4.x",
"load-grunt-tasks": "0.4.x",
"qunit": "0.6.x",
"time-grunt": "0.2.x"
},
"files": [
"dist",
"LICENSE"
],
"main": "./dist/htmlminifier.js"
}