-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "sharp-cli",
"version": "6.0.0-dev",
"description": "CLI for sharp.",
"keywords": [
"cli",
"jpeg",
"libvips",
"png",
"sharp",
"vips",
"webp"
],
"homepage": "https://github.com/vseventer/sharp-cli",
"bugs": "https://github.com/vseventer/sharp-cli/issues",
"license": "MIT",
"type": "module",
"author": "Mark van Seventer <mark@vseventer.com>",
"repository": "vseventer/sharp-cli",
"bin": {
"sharp": "bin/cli.js"
},
"main": "lib/index.js",
"scripts": {
"format": "prettier . --write",
"lint": "eslint",
"pretest": "npm run lint && prettier . --check",
"test": "NODE_OPTIONS=--experimental-loader=@istanbuljs/esm-loader-hook nyc mocha",
"posttest": "nyc report --reporter=lcov"
},
"dependencies": {
"glob": "13.0.x",
"sharp": "0.35.3",
"yargs": "^17.6.2"
},
"devDependencies": {
"@eslint/js": "9.39.x",
"@istanbuljs/esm-loader-hook": "0.3.x",
"eslint": "9.39.x",
"fs-extra": "11.4.x",
"globals": "17.11.x",
"mocha": "11.8.x",
"must": "0.13.x",
"nyc": "18.0.x",
"prettier": "3.9.6",
"sinon": "22.1.x",
"tempy": "3.2.x"
},
"engines": {
"node": ">=20.10.0"
}
}