forked from 11ty/eleventy-img
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "@11ty/eleventy-img",
"version": "2.0.1",
"description": "Low level utility to perform build-time image transformations.",
"publishConfig": {
"access": "public"
},
"main": "img.js",
"scripts": {
"test": "eslint img.js test/**.js && ava",
"posttest": "rm -rf test/img/",
"test-verbose": "DEBUG=ava:watcher npm test -- --watch --verbose",
"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": "zachleatherman@gmail.com",
"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": "^3.0.0",
"debug": "^4.3.4",
"image-size": "^1.0.1",
"p-queue": "^6.6.2",
"sharp": "^0.30.7"
},
"devDependencies": {
"ava": "^4.3.0",
"eslint": "^8.18.0"
},
"ava": {
"failFast": false,
"files": [
"./test/*.js"
],
"ignoredByWatcher": [
"./.cache/*",
"./img/*",
"./test/img/*",
"./test/**/generated*"
]
}
}