forked from cyrilwanner/next-optimized-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "next-optimized-images",
"version": "2.6.2",
"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/cyrilwanner/next-optimized-images.git"
},
"keywords": [
"nextjs",
"next",
"react",
"plugin",
"images",
"optimize",
"optimized-images"
],
"author": "Cyril Wanner <info@cyr.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrilwanner/next-optimized-images/issues"
},
"homepage": "https://github.com/cyrilwanner/next-optimized-images#readme",
"dependencies": {
"chalk": "^2.4.2",
"figures": "^3.0.0",
"file-loader": "^3.0.1",
"imagemin": "^6.1.0",
"img-loader": "^3.0.1",
"raw-loader": "^2.0.0",
"url-loader": "^1.1.2"
},
"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"
}
}