forked from tcoopman/image-webpack-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1005 Bytes
/
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
{
"name": "image-webpack-loader",
"version": "3.4.2",
"description": "Image loader module for webpack",
"author": "Thomas Coopman @tcoopman",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:tcoopman/image-webpack-loader.git"
},
"scripts": {
"test:webpack1": "npm install -q [email protected] && npm run test:clean && webpack --config test/webpack1.config.js",
"test:webpack2": "npm install -q [email protected] && npm run test:clean && webpack --config test/webpack2.config.js",
"test:clean": "rm -rf test/public/assets",
"test": "npm run test:webpack1 && npm run test:webpack2"
},
"dependencies": {
"imagemin": "^5.2.2",
"imagemin-gifsicle": "^5.1.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-optipng": "^5.2.1",
"imagemin-pngquant": "^5.0.0",
"imagemin-svgo": "^5.2.1",
"imagemin-webp": "^4.0.0",
"loader-utils": "^1.1.0",
"object-assign": "^4.1.1"
},
"devDependencies": {
"file-loader": "^0.10.1"
}
}