-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.68 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
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": "@11ty/eleventy-img",
"version": "7.0.0",
"description": "Low level utility to perform build-time image transformations.",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "img.js",
"engines": {
"node": ">=22"
},
"scripts": {
"pretest": "eslint img.js src/**.js test/**.js",
"test": "ava --no-worker-threads",
"watch": "ava --no-worker-threads --watch",
"sample": "cd sample && node sample.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/image.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-utility"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/image/issues"
},
"homepage": "https://github.com/11ty/image#readme",
"dependencies": {
"@11ty/eleventy-fetch": "^5.1.3",
"@11ty/eleventy-utils": "^2.0.7",
"brotli-size": "^4.0.0",
"entities": "^8.0.0",
"obug": "^2.1.4",
"p-queue": "^9.3.3",
"sharp": "^0.35.3"
},
"devDependencies": {
"@11ty/eleventy": "^4.0.0-alpha.10",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"ava": "^8.0.1",
"eslint": "^10.8.0",
"exifr": "^7.1.3",
"globals": "^17.8.0",
"pixelmatch": "^7.2.0"
},
"ava": {
"failFast": false,
"files": [
"./test/*.{js,cjs,mjs}"
],
"watchMode": {
"ignoreChanges": [
"./.cache/*",
"./img/*",
"./test/img/*",
"./test/**/generated*"
]
}
}
}