-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "minify-all-cli",
"version": "1.0.13",
"description": "Minify All JS, CSS and HTML files in a folder by using UglifyJS, CSSNano and HTMLMinifier with an option to gzip all the files as well.",
"main": "bin/minify-all-cli.js",
"bin": {
"minify-all": "./bin/minify-all-cli.js"
},
"scripts": {
"test": "mocha --timeout 90000 tests/**/*.js --exit",
"test-single": "mocha --timeout 90000 tests/**/*.js --exit --grep"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jadiagaurang/minify-all-cli.git"
},
"keywords": [
"Minify",
"Minify All",
"Minify All CLI",
"Minify All JS",
"Minify All CSS",
"Minify All HTML",
"Compress",
"uglifyjs",
"",
"cssnano",
"html-minifier",
"gzip"
],
"author": "Gaurang Jadia",
"license": "MIT",
"dependencies": {
"cssnano": "^5.1.5",
"html-minifier": "^4.0.0",
"parallel-each": "^1.1.7",
"postcss": "^8.4.12",
"terser": "^5.13.1",
"uglify-js": "^3.15.2",
"underscore": "^1.13.2",
"winston": "^3.6.0",
"yargs": "^17.4.0"
},
"bugs": {
"url": "https://github.com/jadiagaurang/minify-all-cli/issues"
},
"homepage": "https://github.com/jadiagaurang/minify-all-cli#readme",
"devDependencies": {
"chai": "^4.3.6",
"concat-stream": "^2.0.0",
"mocha": "^10.0.0"
}
}