forked from lovell/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
194 lines (194 loc) · 7.37 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "@y2zz/sharp",
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
"version": "0.30.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]>",
"Tom Lokhorst <[email protected]>",
"Espen Hovlandsdal <[email protected]>",
"Sylvain Dumont <[email protected]>",
"Alun Davies <[email protected]>",
"Aidan Hoolachan <[email protected]>",
"Axel Eirola <[email protected]>",
"Freezy <[email protected]>",
"Daiz <[email protected]>",
"Julian Aubourg <[email protected]>",
"Keith Belovay <[email protected]>",
"Michael B. Klein <[email protected]>",
"Jordan Prudhomme <[email protected]>",
"Ilya Ovdin <[email protected]>",
"Andargor <[email protected]>",
"Paul Neave <[email protected]>",
"Brendan Kennedy <[email protected]>",
"Brychan Bennett-Odlum <[email protected]>",
"Edward Silverton <[email protected]>",
"Roman Malieiev <[email protected]>",
"Tomas Szabo <[email protected]>",
"Robert O'Rourke <[email protected]>",
"Guillermo Alfonso Varela Chouciño <[email protected]>",
"Christian Flintrup <[email protected]>",
"Manan Jadhav <[email protected]>",
"Leon Radley <[email protected]>",
"alza54 <[email protected]>",
"Jacob Smith <[email protected]>",
"Michael Nutt <[email protected]>",
"Brad Parham <[email protected]>",
"Taneli Vatanen <[email protected]>",
"Joris Dugué <[email protected]>",
"Chris Banks <[email protected]>",
"Ompal Singh <[email protected]>"
],
"scripts": {
"install": "(node install/libvips && node install/dll-copy && prebuild-install) || (node install/can-compile && node-gyp rebuild && node install/dll-copy)",
"clean": "rm -rf node_modules/ build/ vendor/ .nyc_output/ coverage/ test/fixtures/output.*",
"test": "npm run test-lint && npm run test-unit && npm run test-licensing",
"test-lint": "semistandard && cpplint",
"test-unit": "nyc --reporter=lcov --branches=99 mocha --slow=1000 --timeout=60000 ./test/unit/*.js",
"test-licensing": "license-checker --production --summary --onlyAllow=\"Apache-2.0;BSD;ISC;MIT\"",
"test-coverage": "./test/coverage/report.sh",
"test-leak": "./test/leak/leak.sh",
"docs-build": "documentation lint lib && node docs/build && node docs/search-index/build",
"docs-serve": "cd docs && npx serve",
"docs-publish": "cd docs && npx firebase-tools deploy --project pixelplumbing --only hosting:pixelplumbing-sharp"
},
"main": "lib/index.js",
"files": [
"binding.gyp",
"install/**",
"lib/**",
"src/**"
],
"repository": {
"type": "git",
"url": "git://github.com/lovell/sharp"
},
"keywords": [
"jpeg",
"png",
"webp",
"avif",
"tiff",
"gif",
"svg",
"jp2",
"dzi",
"image",
"resize",
"thumbnail",
"crop",
"embed",
"libvips",
"vips"
],
"dependencies": {
"color": "^3.2.1",
"detect-libc": "^2.0.0",
"node-addon-api": "^4.3.0",
"prebuild-install": "^7.0.1",
"semver": "^7.3.5",
"simple-get": "^4.0.1",
"tar-fs": "^2.1.1",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"async": "^3.2.3",
"cc": "^3.0.1",
"decompress-zip": "^0.3.3",
"documentation": "^13.2.5",
"exif-reader": "^1.0.3",
"icc": "^2.0.0",
"license-checker": "^25.0.1",
"mocha": "^9.2.0",
"mock-fs": "^5.1.2",
"nyc": "^15.1.0",
"prebuild": "^11.0.3",
"rimraf": "^3.0.2",
"semistandard": "^16.0.1"
},
"license": "Apache-2.0",
"config": {
"libvips": "8.12.2",
"integrity": {
"darwin-arm64v8": "sha512-p46s/bbJAjkOXzPISZt9HUpG9GWjwQkYnLLRLKzsBJHLtB3X6C6Y/zXI5Hd0DOojcFkks9a0kTN+uDQ/XJY19g==",
"darwin-x64": "sha512-6vOHVZnvXwe6EXRsy29jdkUzBE6ElNpXUwd+m8vV7qy32AnXu7B9YemHsZ44vWviIwPZeXF6Nhd9EFLM0wWohw==",
"linux-arm64v8": "sha512-XwZdS63yhqLtbFtx/0eoLF/Agf5qtTrI11FMnMRpuBJWd4jHB60RAH+uzYUgoChCmKIS+AeXYMLm4d8Ns2QX8w==",
"linux-armv6": "sha512-Rh0Q0kqwPG2MjXWOkPCuPEyiUKFgKJYWLgS835D4MrXgdKr8Tft/eVrc2iGIxt2re30VpDiZ1h0Rby1aCZt2zw==",
"linux-armv7": "sha512-heTS/MsmRvu4JljINxP+vDiS9ZZfuGhr3IStb5F7Gc0/QLRhllYAg4rcO8L1eTK9sIIzG5ARvI19+YUZe7WbzA==",
"linux-x64": "sha512-SSWAwBFi0hx8V/h/v82tTFGKWTFv9FiCK3Timz5OExuI+sX1Ngrd0PVQaWXOThGNdel/fcD3Bz9YjSt4feBR1g==",
"linuxmusl-arm64v8": "sha512-Rhks+5C7p7aO6AucLT1uvzo8ohlqcqCUPgZmN+LZjsPWob/Iix3MfiDYtv/+gTvdeEfXxbCU6/YuPBwHQ7/crA==",
"linuxmusl-x64": "sha512-IOyjSQqpWVntqOUpCHVWuQwACwmmjdi15H8Pc+Ma1JkhPogTfVsFQWyL7DuOTD3Yr23EuYGzovUX00duOtfy/g==",
"win32-arm64v8": "sha512-A+Qe8Ipewtvw9ldvF6nWed2J8kphzrUE04nFeKCtNx6pfGQ/MAlCKMjt/U8VgUKNjB01zJDUW9XE0+FhGZ/UpQ==",
"win32-ia32": "sha512-cMrAvwFdDeAVnLJt0IPMPRKaIFhyXYGTprsM0DND9VUHE8F7dJMR44tS5YkXsGh1QNDtjKT6YuxAVUglmiXtpA==",
"win32-x64": "sha512-vLFIfw6aW2zABa8jpgzWDhljnE6glktrddErVyazAIoHl6BFFe/Da+LK1DbXvIYHz7fyOoKhSfCJHCiJG1Vg6w=="
},
"runtime": "napi",
"target": 5
},
"engines": {
"node": ">=12.13.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"binary": {
"napi_versions": [
5
]
},
"semistandard": {
"env": [
"mocha"
]
},
"cc": {
"linelength": "120",
"filter": [
"build/include"
]
}
}