-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "@szegheo/webpack-eleventy-img-loader",
"version": "0.0.4",
"description": "Webpack 5 image loader built around eleventy-img to convert and optimize images.",
"author": {
"name": "Zsolt Szegheő",
"email": "[email protected]",
"url": "https://github.com/szegheo"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"11ty",
"eleventy",
"image-loader",
"optimize",
"webpack",
"webpack-loader"
],
"files": [
"src/"
],
"main": "src/loader.js",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szegheo/webpack-eleventy-img-loader.git"
},
"bugs": {
"url": "https://github.com/szegheo/webpack-eleventy-img-loader/issues"
},
"homepage": "https://github.com/szegheo/webpack-eleventy-img-loader#readme",
"scripts": {
"commitlint": "commitlint --from=main",
"pretest": "rimraf test/.cache/*",
"test": "eslint src/*.js test/**.js && ava",
"posttest": "rimraf test/.cache/*",
"prepare": "husky install",
"release": "npm run test && standard-version --no-verify"
},
"peerDependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "^1.0.0",
"webpack": "^5.0.0"
},
"devDependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "^1.0.0",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"ava": "^4.0.0",
"eslint": "^8.5.0",
"file-type": "^16.5.3",
"husky": "^7.0.4",
"memfs": "^3.4.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"webpack": "^5.65.0"
},
"ava": {
"failFast": false,
"files": [
"./test/test-fileinfo.js",
"./test/test-loader.js"
]
}
}