-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "webp-loader",
"version": "0.6.0",
"description": "WebP image loader & converter for Webpack",
"main": "index.js",
"scripts": {
"test": "yarn test:webpack1 && yarn test:webpack2 && yarn test:webpack3 && yarn test:webpack4",
"lint": "eslint index.js test/*.js",
"test:webpack1": "WEBPACK_VERSION=1.x ./scripts/test.sh",
"test:webpack2": "WEBPACK_VERSION=2.x ./scripts/test.sh",
"test:webpack3": "WEBPACK_VERSION=3.x ./scripts/test.sh",
"test:webpack4": "WEBPACK_VERSION=4.x ./scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/kavu/webp-loader.git"
},
"keywords": [
"webpack",
"webp",
"image"
],
"author": "Max Riveiro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kavu/webp-loader/issues"
},
"homepage": "https://github.com/kavu/webp-loader",
"dependencies": {
"imagemin": "7.0.1",
"imagemin-webp": "5.1.0",
"loader-utils": "1.2.3"
},
"devDependencies": {
"file-loader": "^3.0.1",
"multi-loader": "^0.1.0",
"webpack": "^4.32.2",
"webpack-cli": "*"
},
"peerDependencies": {
"webpack": "*",
"webpack-cli": "*"
},
"engines": {
"node": ">=8"
}
}