-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
77 lines (77 loc) · 2 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
69
70
71
72
73
74
75
76
77
{
"name": "imagemin-webpack-plugin",
"version": "3.0.0-beta.0",
"description": "Webpack plugin to compress images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"test": "standard src/*",
"build": "babel src --out-dir dist --copy-files --source-maps",
"prepublishOnly": "babel src --out-dir dist --copy-files --source-maps"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Klathmon/imagemin-webpack-plugin.git"
},
"standard": {},
"babel": {
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"node": 8
}
}
]
]
},
"author": "Gregory Benner <[email protected]> (https://github.com/Klathmon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Klathmon/imagemin-webpack-plugin/issues"
},
"homepage": "https://github.com/Klathmon/imagemin-webpack-plugin#readme",
"dependencies": {
"@types/imagemin-gifsicle": "^5.2.0",
"@types/imagemin-jpegtran": "^5.0.0",
"@types/imagemin-optipng": "^5.2.0",
"@types/imagemin-svgo": "^7.0.0",
"@types/webpack": "^4.4.24",
"async-throttle": "^1.1.0",
"babel-runtime": "^6.18.0",
"imagemin": "^6.1.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^7.0.0",
"imagemin-pngquant": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"lodash.map": "^4.6.0",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"util.promisify": "^1.0.0",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"np": "^2.20.1",
"rimraf": "^2.6.2",
"standard": "^11.0.1"
}
}