-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "sharp-cli",
"version": "5.1.0",
"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",
"author": "Mark van Seventer <mark@vseventer.com>",
"repository": "vseventer/sharp-cli",
"bin": {
"sharp": "bin/cli.js"
},
"main": "lib/",
"scripts": {
"pretest": "standard | snazzy",
"test": "nyc mocha",
"posttest": "nyc report --reporter=lcov"
},
"dependencies": {
"bubble-stream-error": "1.0.x",
"glob": "11.0.x",
"is-directory": "0.3.x",
"lodash.pick": "3.1.x",
"sharp": "0.33.5",
"yargs": "^17.6.2"
},
"devDependencies": {
"fs-extra": "11.2.x",
"mocha": "10.6.x",
"must": "0.13.x",
"nyc": "17.0.x",
"sinon": "18.0.x",
"snazzy": "9.0.x",
"standard": "17.1.x",
"tempy": "1.0.x"
},
"engines": {
"node": ">=18.17"
}
}