forked from chenzhutian/hexo-all-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@rcd/hexo-all-minifier",
"version": "0.4.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": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:rightclickdesign/hexo-all-minifier.git"
},
"keywords": [
"hexo",
"filter",
"optimize",
"minify"
],
"author": "Chen Zhutian <[email protected]> (http://chenzhutian.org)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"cheerio": "^1.0.0-rc.2",
"clean-css": "^4.0.9",
"html-minifier": "^3.4.1",
"imagemin": "^5.2.2",
"imagemin-gifsicle": "^5.1.0",
"imagemin-jpegtran": "^5.0.2",
"imagemin-mozjpeg": "^7.0.0",
"imagemin-optipng": "^5.2.1",
"imagemin-pngquant": "^5.0.0",
"imagemin-svgo": "^6.0.0",
"minimatch": "^3.0.3",
"uglify-es": "^3.0.26"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"chai-spies": "^0.7.1",
"eslint": "^4.3.0",
"eslint-config-hexo": "^2.0.0",
"hexo": "^3.2.2",
"mocha": "^4.0.0",
"mock-require": "^2.0.2",
"nyc": "^11.0.3",
"standard-version": "^4.2.0"
}
}