forked from Kwenta/optimized-images-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "optimized-images-loader",
"version": "0.4.0",
"description": "Automatically optimize images in webpack projects.",
"keywords": [
"webpack",
"loader",
"images",
"optimize"
],
"author": "Cyril Wanner <[email protected]>",
"homepage": "https://github.com/cyrilwanner/optimized-images-loader#readme",
"license": "MIT",
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "babel src --out-dir lib --delete-dir-on-start --extensions \".ts\"",
"build:js:watch": "npm run build:js -- --watch --verbose",
"build:types": "tsc --emitDeclarationOnly",
"lint": "tsc --noEmit && eslint . --ext .ts --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"@wasm-codecs/gifsicle": "^1.0.0",
"@wasm-codecs/mozjpeg": "^1.0.1",
"@wasm-codecs/oxipng": "^1.0.1",
"file-loader": "^6.0.0",
"get-rgba-palette": "^2.0.1",
"loader-utils": "^2.0.0",
"schema-utils": "^2.6.6",
"sharp": "0.30.0",
"svgo": "^1.3.2",
"url-loader": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^26.0.0",
"@types/loader-utils": "^2.0.0",
"@types/sharp": "0.30.0",
"@types/svgo": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0"
},
"main": "lib/index.js",
"types": "images.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"images.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyrilwanner/optimized-images-loader.git"
},
"bugs": {
"url": "https://github.com/cyrilwanner/optimized-images-loader/issues"
}
}