mirror of
https://github.com/lovell/sharp.git
synced 2025-07-08 18:20:13 +02:00
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "sharp",
|
|
"version": "0.12.0",
|
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
"contributors": [
|
|
"Pierre Inglebert <pierre.inglebert@gmail.com>",
|
|
"Jonathan Ong <jonathanrichardong@gmail.com>",
|
|
"Chanon Sajjamanochai <chanon.s@gmail.com>",
|
|
"Juliano Julio <julianojulio@gmail.com>",
|
|
"Daniel Gasienica <daniel@gasienica.ch>",
|
|
"Julian Walker <julian@fiftythree.com>",
|
|
"Amit Pitaru <pitaru.amit@gmail.com>",
|
|
"Brandon Aaron <hello.brandon@aaron.sh>",
|
|
"Andreas Lind <andreas@one.com>",
|
|
"Maurus Cuelenaere <mcuelenaere@gmail.com>",
|
|
"Linus Unnebäck <linus@folkdatorn.se>",
|
|
"Victor Mateevitsi <mvictoras@gmail.com>",
|
|
"Alaric Holloway <alaric.holloway@gmail.com>",
|
|
"Bernhard K. Weisshuhn <bkw@codingforce.com>",
|
|
"Chris Riley <criley@primedia.com>",
|
|
"David Carley <dacarley@gmail.com>"
|
|
],
|
|
"description": "High performance Node.js module to resize JPEG, PNG, WebP and TIFF images using the libvips library",
|
|
"scripts": {
|
|
"clean": "rm -rf build/ include/ lib/ coverage/ test/fixtures/output.*",
|
|
"test": "VIPS_WARNING=0 node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --slow=5000 --timeout=20000 ./test/unit/*.js",
|
|
"test-win": "node ./node_modules/mocha/bin/mocha --slow=5000 --timeout=30000 ./test/unit/*.js",
|
|
"test-leak": "./test/leak/leak.sh",
|
|
"test-packaging": "./packaging/test.sh",
|
|
"test-clean": "rm -rf coverage/ test/fixtures/output.* && npm install && npm test"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/lovell/sharp"
|
|
},
|
|
"keywords": [
|
|
"jpeg",
|
|
"png",
|
|
"webp",
|
|
"tiff",
|
|
"dzi",
|
|
"resize",
|
|
"thumbnail",
|
|
"crop",
|
|
"libvips",
|
|
"vips"
|
|
],
|
|
"dependencies": {
|
|
"bluebird": "^3.0.5",
|
|
"color": "^0.10.1",
|
|
"nan": "^2.1.0",
|
|
"semver": "^5.0.3",
|
|
"request": "^2.65.0",
|
|
"tar": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^1.5.0",
|
|
"coveralls": "^2.11.4",
|
|
"exif-reader": "1.0.0",
|
|
"icc": "^0.0.2",
|
|
"istanbul": "^0.4.0",
|
|
"mocha": "^2.3.3",
|
|
"mocha-jshint": "^2.2.5",
|
|
"node-cpplint": "^0.4.0",
|
|
"rimraf": "^2.4.3",
|
|
"bufferutil": "^1.2.1"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"config": {
|
|
"libvips": "8.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
}
|
|
}
|