Change from pnpm to npm, add ./link.sh shortcut for npm style package linking
[html-minifier.git] / package.json
1 {
2   "name": "@ndcode/html-minifier",
3   "description": "Highly configurable, well-tested, JavaScript-based HTML minifier (uses NDCODE dependencies).",
4   "version": "3.5.21",
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": "https://kangax.github.io/html-minifier/",
27   "author": "Juriy \"kangax\" Zaytsev",
28   "maintainers": [
29     "Nick Downing <nick@ndcode.org>"
30   ],
31   "contributors": [
32     "Gilmore Davidson (https://github.com/gilmoreorless)",
33     "Hugo Wetterberg <hugo@wetterberg.nu>",
34     "Zoltan Frombach <tssajo@gmail.com>",
35     "Alex Lam <alexlamsl@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": "https://git.ndcode.org/public/html-minifier.git"
45   },
46   "bugs": {
47     "email": "nick@ndcode.org"
48   },
49   "engines": {
50     "node": ">=4"
51   },
52   "scripts": {
53     "dist": "grunt dist",
54     "test": "grunt test"
55   },
56   "dependencies": {
57     "@ndcode/clean-css": "^4.2.2",
58     "camel-case": "3.0.x",
59     "commander": "2.17.x",
60     "he": "1.2.x",
61     "param-case": "2.1.x",
62     "relateurl": "0.2.x",
63     "uglify-es": "^3.3.9"
64   },
65   "devDependencies": {
66     "grunt": "1.0.x",
67     "grunt-browserify": "5.3.x",
68     "grunt-contrib-uglify": "3.4.x",
69     "gruntify-eslint": "4.0.x",
70     "qunit": "2.x"
71   },
72   "benchmarkDependencies": {
73     "brotli": "1.3.x",
74     "chalk": "2.4.x",
75     "cli-table": "0.3.x",
76     "lzma": "2.3.x",
77     "minimize": "2.2.x",
78     "progress": "2.0.x"
79   },
80   "files": [
81     "src/*.js",
82     "cli.js",
83     "sample-cli-config-file.conf"
84   ]
85 }