-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
70 lines (70 loc) · 1.57 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
{
"name": "@11ty/eleventy-img",
"version": "5.0.0",
"description": "Low level utility to perform build-time image transformations.",
"publishConfig": {
"access": "public"
},
"main": "img.js",
"engines": {
"node": ">=18"
},
"scripts": {
"pretest": "eslint img.js test/**.js",
"test": "ava --no-worker-threads",
"sample": "cd sample && node sample.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-img.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-utility"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-img/issues"
},
"homepage": "https://github.com/11ty/eleventy-img#readme",
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-utils": "^1.0.3",
"brotli-size": "^4.0.0",
"debug": "^4.3.7",
"entities": "^5.0.0",
"image-size": "^1.1.1",
"p-queue": "^6.6.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"ava": "^6.1.3",
"eslint": "^8.56.0",
"pixelmatch": "^5.3.0"
},
"ava": {
"failFast": false,
"files": [
"./test/*.{js,cjs,mjs}"
],
"watchMode": {
"ignoreChanges": [
"./.cache/*",
"./img/*",
"./test/img/*",
"./test/**/generated*"
]
}
}
}