2017-05-03 15:35:00 +02:00
|
|
|
{
|
|
|
|
"name": "html-minifier",
|
|
|
|
"description": "Highly configurable, well-tested, JavaScript-based HTML minifier.",
|
2017-08-14 05:01:11 +02:00
|
|
|
"version": "3.5.3",
|
2017-05-03 15:35:00 +02:00
|
|
|
"keywords": [
|
|
|
|
"cli",
|
|
|
|
"compress",
|
|
|
|
"compressor",
|
|
|
|
"css",
|
|
|
|
"html",
|
|
|
|
"htmlmin",
|
|
|
|
"javascript",
|
|
|
|
"min",
|
|
|
|
"minification",
|
|
|
|
"minifier",
|
|
|
|
"minify",
|
|
|
|
"optimize",
|
|
|
|
"optimizer",
|
|
|
|
"pack",
|
|
|
|
"packer",
|
|
|
|
"parse",
|
|
|
|
"parser",
|
|
|
|
"uglifier",
|
|
|
|
"uglify"
|
|
|
|
],
|
|
|
|
"homepage": "http://kangax.github.io/html-minifier/",
|
|
|
|
"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": "./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": ">=4"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"dist": "grunt dist",
|
|
|
|
"test": "grunt test"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"camel-case": "3.0.x",
|
2017-05-24 15:10:37 +02:00
|
|
|
"clean-css": "4.1.x",
|
2017-08-14 05:01:11 +02:00
|
|
|
"commander": "2.11.x",
|
2017-05-03 15:35:00 +02:00
|
|
|
"he": "1.1.x",
|
|
|
|
"ncname": "1.0.x",
|
|
|
|
"param-case": "2.1.x",
|
|
|
|
"relateurl": "0.2.x",
|
2017-05-24 15:10:37 +02:00
|
|
|
"uglify-js": "3.0.x"
|
2017-05-03 15:35:00 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"grunt": "1.0.x",
|
|
|
|
"grunt-browserify": "5.0.x",
|
2017-05-24 15:10:37 +02:00
|
|
|
"grunt-contrib-uglify": "3.0.x",
|
2017-08-14 05:01:11 +02:00
|
|
|
"gruntify-eslint": "4.0.x",
|
2017-05-03 15:35:00 +02:00
|
|
|
"phantomjs-prebuilt": "2.1.x",
|
2017-05-24 15:10:37 +02:00
|
|
|
"qunitjs": "2.x"
|
2017-05-03 15:35:00 +02:00
|
|
|
},
|
|
|
|
"benchmarkDependencies": {
|
|
|
|
"brotli": "1.3.x",
|
2017-08-14 05:01:11 +02:00
|
|
|
"chalk": "2.0.x",
|
2017-05-03 15:35:00 +02:00
|
|
|
"cli-table": "0.3.x",
|
|
|
|
"lzma": "2.3.x",
|
|
|
|
"minimize": "2.1.x",
|
|
|
|
"progress": "2.0.x"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"src/*.js",
|
|
|
|
"cli.js",
|
|
|
|
"sample-cli-config-file.conf"
|
|
|
|
]
|
|
|
|
}
|