Support Node.js v0.10+ only. Add @pierreinglebert credit.

This commit is contained in:
Lovell Fuller 2014-04-02 22:19:53 +01:00
parent fe773733cd
commit c8f023d8ba
2 changed files with 12 additions and 9 deletions

View File

@ -21,7 +21,7 @@ This module is powered by the blazingly fast [libvips](https://github.com/jcupit
## Prerequisites
* Node.js v0.8+
* Node.js v0.10+
* [libvips](https://github.com/jcupitt/libvips) v7.38.5+
### Install libvips on Mac OS
@ -259,7 +259,7 @@ Test environment:
## Licence
Copyright 2013, 2014 Lovell Fuller
Copyright 2013, 2014 Lovell Fuller and Pierre Inglebert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -1,7 +1,10 @@
{
"name": "sharp",
"version": "0.2.1",
"author": "Lovell Fuller",
"version": "0.2.2",
"author": "Lovell Fuller <npm@lovell.info>",
"contributors": [
"Pierre Inglebert <pierre.inglebert@gmail.com>"
],
"description": "High performance module to resize JPEG, PNG, WebP and TIFF images using the libvips image processing library",
"scripts": {
"test": "node tests/unit && node tests/perf"
@ -27,14 +30,14 @@
"buffer"
],
"devDependencies": {
"imagemagick": "*",
"gm": "*",
"async": "*",
"benchmark": "*"
"imagemagick": "^0.1.3",
"gm": "^1.14.2",
"async": "^0.6.2",
"benchmark": "^1.0.0"
},
"license": "Apache 2.0",
"engines": {
"node": ">=0.8"
"node": ">=0.10"
},
"dependencies": {
"nan": "^0.8.0"