forked from lovell/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.39 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
50
51
52
53
{
"name": "sharp",
"version": "0.9.0",
"author": "Lovell Fuller <[email protected]>",
"contributors": [
"Pierre Inglebert <[email protected]>",
"Jonathan Ong <[email protected]>",
"Chanon Sajjamanochai <[email protected]>",
"Juliano Julio <[email protected]>",
"Daniel Gasienica <[email protected]>",
"Julian Walker <[email protected]>",
"Amit Pitaru <[email protected]>",
"Brandon Aaron <[email protected]>",
"Andreas Lind <[email protected]>"
],
"description": "High performance Node.js module to resize JPEG, PNG, WebP and TIFF images using the libvips library",
"scripts": {
"test": "VIPS_WARNING=0 node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --slow=5000 --timeout=10000 ./test/unit/*.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/lovell/sharp"
},
"keywords": [
"jpeg",
"png",
"webp",
"tiff",
"resize",
"thumbnail",
"crop",
"libvips",
"vips"
],
"dependencies": {
"bluebird": "^2.8.2",
"color": "^0.7.3",
"nan": "^1.6.1",
"semver": "^4.2.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"mocha-jshint": "^0.0.9",
"istanbul": "^0.3.5",
"coveralls": "^2.11.2",
"node-cpplint": "^0.4.0"
},
"license": "Apache 2.0",
"engines": {
"node": ">=0.10"
}
}