-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
57 lines (57 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
{
"name": "hexo-all-minifier",
"version": "0.5.7",
"description": "Minify HTML, CSS, JS and Image files.",
"main": "index",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=lcov mocha --reporter spec test/index.js",
"bump": "standard-version"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:chenzhutian/hexo-all-minifier.git"
},
"keywords": [
"hexo",
"filter",
"optimize",
"minify"
],
"author": "Chen Zhutian <[email protected]> (http://chenzhutian.org)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.5",
"clean-css": "^5.1.2",
"html-minifier-terser": "^5.1.1",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"minimatch": "^3.0.4",
"uglify-js": "^3.13.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"eslint": "^7.23.0",
"eslint-config-hexo": "^4.1.0",
"hexo": "^5.4.0",
"mocha": "^8.3.2",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"standard-version": "^9.1.1"
}
}