Skip to content

Commit cb5bc03

Browse files
committed
update version, update npm scope
1 parent c8201b5 commit cb5bc03

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
99
You can install this module using [npm](http://github.com/isaacs/npm):
1010

11-
npm install imagemagick
11+
npm install @mikepol/imagemagick
1212

1313
Requires imagemagick CLI tools to be installed. There are numerous ways to install them. For instance, if you're on OS X you can use [Homebrew](http://mxcl.github.com/homebrew/): `brew install imagemagick`.
1414

1515
## Example
1616

1717
```javascript
18-
var im = require('imagemagick');
18+
var im = require('@mikepol/imagemagick');
1919
im.readMetadata('kittens.jpg', function(err, metadata){
2020
if (err) throw err;
2121
console.log('Shot at '+metadata.exif.dateTimeOriginal);

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
{ "name" : "imagemagick"
1+
{ "name" : "@mikepol/imagemagick"
22
, "description" : "A wrapper around the imagemagick cli"
3-
, "version" : "0.1.3"
3+
, "version" : "0.1.4"
44
, "author" : "Rasmus Andersson <http://rsms.me/>"
55
, "licenses" : ["MIT"]
66
, "repository" : { "type" : "git"
7-
, "url" : "http://github.com/rsms/node-imagemagick.git" }
7+
, "url" : "http://github.com/sotadev/node-imagemagick.git" }
88
, "engine" : ["node >=0.6"]
99
, "main" : "imagemagick"
1010
}

0 commit comments

Comments
 (0)