8e565e95553a09f46226e6c548974613679f1235
[html-minifier.git] / package.json
1 {
2   "name": "html-minifier",
3   "description": "Highly configurable, well-tested, JavaScript-based HTML minifier.",
4   "version": "3.4.4",
5   "keywords": [
6     "cli",
7     "compress",
8     "compressor",
9     "css",
10     "html",
11     "htmlmin",
12     "javascript",
13     "min",
14     "minification",
15     "minifier",
16     "minify",
17     "optimize",
18     "optimizer",
19     "pack",
20     "packer",
21     "parse",
22     "parser",
23     "uglifier",
24     "uglify"
25   ],
26   "homepage": "http://kangax.github.io/html-minifier/",
27   "author": "Juriy \"kangax\" Zaytsev",
28   "maintainers": [
29     "Alex Lam <alexlamsl@gmail.com>",
30     "Juriy Zaytsev <kangax@gmail.com> (http://perfectionkills.com)"
31   ],
32   "contributors": [
33     "Gilmore Davidson (https://github.com/gilmoreorless)",
34     "Hugo Wetterberg <hugo@wetterberg.nu>",
35     "Zoltan Frombach <tssajo@gmail.com>"
36   ],
37   "license": "MIT",
38   "bin": {
39     "html-minifier": "./cli.js"
40   },
41   "main": "src/htmlminifier.js",
42   "repository": {
43     "type": "git",
44     "url": "git+https://github.com/kangax/html-minifier.git"
45   },
46   "bugs": {
47     "url": "https://github.com/kangax/html-minifier/issues"
48   },
49   "engines": {
50     "node": ">=4"
51   },
52   "scripts": {
53     "dist": "grunt dist",
54     "test": "grunt test"
55   },
56   "dependencies": {
57     "camel-case": "3.0.x",
58     "clean-css": "4.1.x",
59     "commander": "2.9.x",
60     "he": "1.1.x",
61     "ncname": "1.0.x",
62     "param-case": "2.1.x",
63     "relateurl": "0.2.x",
64     "uglify-js": "3.0.x"
65   },
66   "devDependencies": {
67     "grunt": "1.0.x",
68     "grunt-browserify": "5.0.x",
69     "grunt-contrib-uglify": "3.0.x",
70     "gruntify-eslint": "3.1.x",
71     "phantomjs-prebuilt": "2.1.x",
72     "qunitjs": "2.x"
73   },
74   "benchmarkDependencies": {
75     "brotli": "1.3.x",
76     "chalk": "1.1.x",
77     "cli-table": "0.3.x",
78     "lzma": "2.3.x",
79     "minimize": "2.1.x",
80     "progress": "2.0.x"
81   },
82   "files": [
83     "src/*.js",
84     "cli.js",
85     "sample-cli-config-file.conf"
86   ]
87 }