forked from lovell/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.1 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",
"version": "0.6.2",
"author": "Lovell Fuller <[email protected]>",
"contributors": [
"Pierre Inglebert <[email protected]>",
"Jonathan Ong <[email protected]>",
"Chanon Sajjamanochai <[email protected]>",
"Juliano Julio <[email protected]>"
],
"description": "High performance Node.js module to resize JPEG, PNG and WebP images using the libvips library",
"scripts": {
"test": "node tests/unit && node tests/perf"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lovell/sharp"
},
"keywords": [
"jpeg",
"png",
"webp",
"tiff",
"gif",
"resize",
"thumbnail",
"sharpen",
"crop",
"embed",
"libvips",
"vips",
"fast",
"buffer",
"stream"
],
"dependencies": {
"nan": "^1.3.0",
"bluebird": "^2.3.2"
},
"devDependencies": {
"imagemagick": "^0.1.3",
"imagemagick-native": "^1.2.2",
"gm": "^1.16.0",
"async": "^0.9.0",
"benchmark": "^1.0.0"
},
"license": "Apache 2.0",
"engines": {
"node": ">=0.10"
}
}