forked from lovell/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sharp",
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP and TIFF images",
"version": "0.17.3",
"author": "Lovell Fuller <[email protected]>",
"homepage": "https://github.com/lovell/sharp",
"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]>",
"Maurus Cuelenaere <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Victor Mateevitsi <[email protected]>",
"Alaric Holloway <[email protected]>",
"Bernhard K. Weisshuhn <[email protected]>",
"Chris Riley <[email protected]>",
"David Carley <[email protected]>",
"John Tobin <[email protected]>",
"Kenton Gray <[email protected]>",
"Felix Bünemann <[email protected]>",
"Samy Al Zahrani <[email protected]>",
"Chintan Thakkar <[email protected]>",
"F. Orlando Galashan <[email protected]>",
"Kleis Auke Wolthuizen <[email protected]>",
"Matt Hirsch <[email protected]>",
"Matthias Thoemmes <[email protected]>",
"Patrick Paskaris <[email protected]>",
"Jérémy Lal <[email protected]>",
"Rahul Nanwani <[email protected]>",
"Alice Monday <[email protected]>",
"Kristo Jorgenson <[email protected]>"
],
"scripts": {
"clean": "rm -rf node_modules/ build/ vendor/ coverage/ test/fixtures/output.*",
"test": "semistandard && cc && cross-env VIPS_WARNING=0 nyc --reporter=lcov --branches=99 mocha --slow=5000 --timeout=60000 ./test/unit/*.js",
"test-leak": "./test/leak/leak.sh",
"test-packaging": "./packaging/test-linux-x64.sh",
"docs": "for m in constructor input resize composite operation colour channel output utility; do documentation build --shallow --format=md lib/$m.js >docs/api-$m.md; done"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/lovell/sharp"
},
"keywords": [
"jpeg",
"png",
"webp",
"tiff",
"gif",
"svg",
"dzi",
"image",
"resize",
"thumbnail",
"crop",
"libvips",
"vips"
],
"dependencies": {
"caw": "^2.0.0",
"color": "^1.0.3",
"got": "^6.7.1",
"nan": "^2.5.1",
"semver": "^5.3.0",
"tar": "^2.2.1"
},
"devDependencies": {
"async": "^2.2.0",
"bufferutil": "^3.0.0",
"cc": "^1.0.0",
"cross-env": "^4.0.0",
"documentation": "^4.0.0-beta.18",
"exif-reader": "^1.0.2",
"icc": "^1.0.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rimraf": "^2.5.4",
"semistandard": "^10.0.0",
"unzip": "^0.1.11"
},
"license": "Apache-2.0",
"config": {
"libvips": "8.4.2"
},
"engines": {
"node": ">=4"
},
"semistandard": {
"env": [
"mocha"
]
},
"cc": {
"linelength": "120",
"filter": [
"build/include",
"runtime/indentation_namespace"
]
}
}