forked from vseventer/sharp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "sharp-cli",
"version": "1.15.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": "^7.1.6",
"is-directory": "0.3.x",
"multiyargs": "1.0.x",
"rw-stream": "^0.3.3",
"sharp": "0.29.2",
"yargs": "12.0.x"
},
"devDependencies": {
"fs-extra": "9.1.x",
"mocha": "8.3.x",
"must": "0.13.x",
"nyc": "15.1.x",
"sinon": "9.2.x",
"snazzy": "9.0.x",
"standard": "14.3.x",
"tempy": "1.0.x"
},
"engines": {
"node": ">=10"
}
}