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
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "sharp-cli",
"version": "1.11.0",
"description": "CLI for sharp.",
"keywords": [
"cli",
"jpeg",
"libvips",
"png",
"sharp",
"vips",
"webp"
],
"homepage": "https://github.com/speedinternet/sharp-cli",
"bugs": "https://github.com/speedinternet/sharp-cli/issues",
"license": "MIT",
"author": "Mark van Seventer <mark@vseventer.com>",
"repository": "speedinternet/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",
"multiyargs": "1.0.x",
"sharp": "0.23.0",
"url-template": "2.0.x",
"yargs": "12.0.x"
},
"devDependencies": {
"fs-extra": "8.0.x",
"mocha": "6.1.x",
"must": "0.13.x",
"nyc": "14.1.x",
"sinon": "7.3.x",
"snazzy": "8.0.x",
"standard": "12.0.x",
"tempfile": "3.0.x"
},
"engines": {
"node": ">=8.x"
}
}