New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

imagemagick-native

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imagemagick-native - npm Package Compare versions

Comparing version 1.8.0 to 1.9.0

8

index.js

@@ -8,6 +8,2 @@ module.exports = require(__dirname + '/build/Release/imagemagick.node');

// node v0.10+ use native Transform, else polyfill
var Transform = stream.Transform ||
require('readable-stream').Transform;
function Convert(options) {

@@ -23,5 +19,5 @@ // allow use without new

// init Transform
Transform.call(this, options);
stream.Transform.call(this, options);
}
util.inherits(Convert, Transform);
util.inherits(Convert, stream.Transform);

@@ -28,0 +24,0 @@ Convert.prototype._transform = function (chunk, enc, done) {

@@ -10,3 +10,3 @@ {

],
"version": "1.8.0",
"version": "1.9.0",
"license": "MIT",

@@ -25,7 +25,6 @@ "repository": {

"engines": {
"node": "*"
"node": ">=0.10.0"
},
"dependencies": {
"nan": "~1.7.0",
"readable-stream": "*"
"nan": "2.x"
},

@@ -32,0 +31,0 @@ "devDependencies": {

@@ -11,3 +11,3 @@ # node-imagemagick-native

[![Build Status](https://travis-ci.org/mash/node-imagemagick-native.png)](https://travis-ci.org/mash/node-imagemagick-native)
[![Build Status](https://travis-ci.org/elad/node-imagemagick-native.png)](https://travis-ci.org/elad/node-imagemagick-native)

@@ -33,2 +33,3 @@ Table of contents

* [Performance](#performance)
* [Contributing](#contributing)
* [License](#license)

@@ -434,2 +435,8 @@

<a name='contributing'></a>
## Contributing
This project follows the ["OPEN Open Source"](https://gist.github.com/substack/e205f5389890a1425233) philosophy. If you submit a pull request and it gets merged you will most likely be given commit access to this repository.
<a name='license'></a>

@@ -436,0 +443,0 @@

@@ -7,2 +7,4 @@

process.chdir(__dirname);
console.log("image magick's version is: " + imagemagick.version());

@@ -60,2 +62,2 @@ var versions = imagemagick.version().split(".");

});
});
});

@@ -6,2 +6,4 @@ var test = require('tap').test

process.chdir(__dirname);
console.log("image magick's version is: " + imagemagick.version());

@@ -8,0 +10,0 @@ var versions = imagemagick.version().split(".");

@@ -8,2 +8,4 @@

process.chdir(__dirname);
console.log("image magick's version is: " + imagemagick.version());

@@ -10,0 +12,0 @@ var versions = imagemagick.version().split(".");

@@ -6,2 +6,4 @@ var test = require('tap').test

process.chdir(__dirname);
console.log("image magick's version is: " + imagemagick.version());

@@ -8,0 +10,0 @@ var versions = imagemagick.version().split(".");

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc