-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
75
{
"name": "webpack-image-srcset-loader",
"version": "5.0.4",
"description": "Generate srcset string from image",
"keywords": [
"webpack",
"loader",
"srcset",
"responsive",
"image"
],
"main": "dist/cjs.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint --max-warnings 0 --ext .ts .",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts .",
"lint:markdown": "remark .",
"test": "tsc --project tsconfig.test-build.json && jest",
"release": "HUSKY_SKIP_HOOKS=1 standard-version"
},
"author": {
"name": "Calvin Liang",
"email": "[email protected]",
"url": "https://calvin.sh"
},
"repository": "Calvin-LL/webpack-image-srcset-loader",
"bugs": "https://github.com/Calvin-LL/webpack-image-srcset-loader/issues",
"homepage": "https://github.com/Calvin-LL/webpack-image-srcset-loader",
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"@calvin-l/webpack-loader-util": "^1.0.2",
"js-string-escape": "^1.0.1",
"loader-utils": "^2.0.0",
"schema-utils": "^3.1.1",
"sharp": "^0.28.3"
},
"devDependencies": {
"@calvin-l/webpack-loader-test-util": "^3.0.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"@types/js-string-escape": "^1.0.0",
"@types/node": "^16.4.12",
"@types/sharp": "^0.28.5",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-plugin-import-helpers": "^1.1.0",
"file-loader": "^6.1.0",
"husky": "^4.3.7",
"jest": "^27.3.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"remark-cli": "^10.0.0",
"remark-lint": "^9.1.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-preset-lint-recommended": "^6.1.1",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.7",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-image-resize-loader": "^5.0.0"
}
}