-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "webpack-image-processor-loader",
"version": "1.4.4",
"description": "A webpack loader for processing images.",
"homepage": "https://github.com/alexanderhorner/webpack-image-processor-loader#readme",
"repository": {
"type": "git",
"url": "https://github.com/alexanderhorner/webpack-image-processor-loader.git"
},
"main": "./dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "tsc; cd test; rm -rf dist; webpack",
"benchmark": "tsc; cd test/benchmark; rm -rf dist; webpack"
},
"author": "Alexander Horner",
"license": "GPL-3.0-or-later",
"dependencies": {
"file-loader": "^6.2.0",
"loader-utils": "^3.2.0",
"query-string": "^7.1.0",
"replace-ext": "^2.0.0",
"schema-utils": "^3.1.1",
"sharp": "^0.29.3"
},
"devDependencies": {
"@types/file-loader": "^5.0.1",
"@types/loader-utils": "^2.0.3",
"@types/replace-ext": "^2.0.0",
"@types/sharp": "^0.29.4",
"ts-loader": "^9.2.6",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}