This repository has been archived by the owner on Jul 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
68 lines (68 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "hexo-asset-pipeline",
"version": "1.8.0",
"description": "A hexo plugin to minify/optimize HTML, CSS, JS and images. Supports revisioning of assets.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib/"
],
"scripts": {
"test": "jest"
},
"jest": {
"testRegex": "/__tests__/.*.spec.js",
"testPathIgnorePatterns": [
"support/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/hexo-asset-pipeline.git"
},
"keywords": [
"hexo",
"hexo-plugin",
"jss",
"css",
"image",
"html",
"minify",
"versioning",
"revisioning"
],
"author": "bhaskarmelkani <melkani.bhaskar@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexojs/hexo-asset-pipeline/issues"
},
"homepage": "https://github.com/hexojs/hexo-asset-pipeline#readme",
"dependencies": {
"bluebird": "^3.5.0",
"clean-css": "^4.1.4",
"hasha": "^5.0.0",
"html-minifier": "^4.0.0",
"imagemin": "^7.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"lodash.clonedeep": "^4.5.0",
"micromatch": "^4.0.2",
"rev-path": "^2.0.0",
"soup": "^0.1.5",
"stream-to-array": "^2.3.0",
"uglify-js": "^3.0.19"
},
"devDependencies": {
"hexo": "^6.0.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-test-utils": "^0.5.0",
"jest": "^27.0.6"
}
}