forked from lovell/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.15 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "sharp",
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP and TIFF images",
"version": "0.20.1",
"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]>",
"YvesBos <[email protected]>",
"Guy Maliar <[email protected]>",
"Nicolas Coden <[email protected]>",
"Matt Parrish <[email protected]>",
"Marcel Bretschneider <[email protected]>",
"Matthew McEachen <[email protected]>",
"Jarda Kotěšovec <[email protected]>",
"Kenric D'Souza <[email protected]>",
"Oleh Aleinyk <[email protected]>",
"Marcel Bretschneider <[email protected]>",
"Andrea Bianco <[email protected]>",
"Rik Heywood <[email protected]>",
"Thomas Parisot <[email protected]>",
"Nathan Graves <[email protected]>"
],
"scripts": {
"install": "(node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)",
"clean": "rm -rf node_modules/ build/ vendor/ coverage/ test/fixtures/output.*",
"test": "semistandard && cc && nyc --reporter=lcov --branches=99 mocha --slow=5000 --timeout=60000 ./test/unit/*.js && prebuild-ci",
"coverage": "./test/coverage/report.sh",
"test-leak": "./test/leak/leak.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",
"embed",
"libvips",
"vips"
],
"dependencies": {
"color": "^3.0.0",
"detect-libc": "^1.0.3",
"nan": "^2.10.0",
"fs-copy-file-sync": "^1.0.1",
"npmlog": "^4.1.2",
"prebuild-install": "^2.5.3",
"semver": "^5.5.0",
"simple-get": "^2.7.0",
"tar": "^4.4.1",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"async": "^2.6.0",
"cc": "^1.0.2",
"decompress-zip": "^0.3.1",
"documentation": "^6.2.0",
"exif-reader": "^1.0.2",
"icc": "^1.0.0",
"mocha": "^5.1.0",
"nyc": "^11.7.1",
"prebuild": "^7.4.0",
"prebuild-ci": "^2.2.3",
"rimraf": "^2.6.2",
"semistandard": "^12.0.1"
},
"license": "Apache-2.0",
"config": {
"libvips": "8.6.1"
},
"engines": {
"node": ">=4.5.0"
},
"semistandard": {
"env": [
"mocha"
]
},
"cc": {
"linelength": "120",
"filter": [
"build/c++11",
"build/include",
"runtime/indentation_namespace",
"runtime/references"
]
}
}