forked from cyrilwanner/next-optimized-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "@jokalli2/next-optimized-images",
"version": "2.6.5",
"description": "Automatically optimize images used in next.js projects (jpeg, png, gif, svg).",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib",
"lint:fix": "eslint --fix lib",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jokalli2/next-optimized-images.git"
},
"keywords": [
"nextjs",
"next",
"react",
"plugin",
"images",
"optimize",
"optimized-images"
],
"author": "Cyril Wanner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jokalli2/next-optimized-images/issues"
},
"homepage": "https://github.com/jokalli2/next-optimized-images#readme",
"dependencies": {
"chalk": "^4.1.2",
"figures": "^3.0.0",
"file-loader": "^6.2.0",
"imagemin": "^7.0.1",
"img-loader": "^4.0.0",
"raw-loader": "^4.0.2",
"url-loader": "^4.1.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"jest": "^24.7.1",
"loader-utils": "^1.2.3",
"npm-autoinstaller": "^1.3.1",
"svg-sprite-loader": "^4.1.3",
"webpack": "^4.30.0"
},
"directories": {
"example": "example",
"lib": "lib"
}
}