forked from tcoopman/image-webpack-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.35 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
{
"name": "image-webpack-loader",
"version": "4.4.0",
"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:webpack3": "npm install -q [email protected] && npm run test:clean && webpack --config test/webpack2.config.js",
"test:webpack4": "npm install -q [email protected] webpack-cli && npm run test:clean && webpack --config test/webpack4.config.js",
"test:clean": "rimraf test/public/assets",
"test": "npm run test:webpack1 && npm run test:webpack2 && npm run test:webpack3 && npm run test:webpack4"
},
"dependencies": {
"imagemin": "^5.3.1",
"imagemin-gifsicle": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-pngquant": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"imagemin-webp": "^4.1.0",
"loader-utils": "^1.1.0",
"object-assign": "^4.1.1"
},
"devDependencies": {
"file-loader": "^1.1.11",
"rimraf": "^2.6.2",
"webpack": "^4.17.2",
"webpack-cli": "^2.1.5"
}
}