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

gm

Package Overview
Dependencies
Maintainers
2
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gm - npm Package Compare versions

Comparing version 1.12.0 to 1.12.1

4

History.md

@@ -0,1 +1,5 @@

1.12.1 / 2013-08-29
===================
* refactor; replace through with stream.PassThrough
1.12.0 / 2013-08-27

@@ -2,0 +6,0 @@ ===================

8

lib/command.js

@@ -11,4 +11,4 @@

var series = require('array-series');
var through = require('through');
var streamToBuffer = require('stream-to-buffer');
var PassThrough = require('stream').PassThrough;

@@ -96,3 +96,5 @@ /**

if ("function" !== typeof callback) {
throughStream = through()
throughStream = new PassThrough({
objectMode: true
})
callback = function (err, stdout, stderr) {

@@ -115,3 +117,3 @@ if (err) throughStream.emit('error', err);

return throughStream
return throughStream || this;
}

@@ -118,0 +120,0 @@

@@ -1,27 +0,48 @@

{ "name": "gm"
, "description": "GraphicsMagick for node.js"
, "version": "1.12.0"
, "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>"
, "keywords": ["graphics", "magick", "image", "graphicsmagick", "imagemagick", "gm", "convert", "identify", "compare"]
, "engines": { "node": ">= 0.8.0" }
, "bugs": { "url": "http://github.com/aheckmann/gm/issues" }
, "licenses": [{ "type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php"}]
, "main": "./index"
, "scripts": { "test": "make test-unit; make test;" }
, "repository": {
"type": "git"
, "url": "https://github.com/aheckmann/gm.git"
{
"name": "gm",
"description": "GraphicsMagick for node.js",
"version": "1.12.1",
"author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"keywords": [
"graphics",
"magick",
"image",
"graphicsmagick",
"imagemagick",
"gm",
"convert",
"identify",
"compare"
],
"engines": {
"node": ">= 0.8.0"
},
"bugs": {
"url": "http://github.com/aheckmann/gm/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"main": "./index",
"scripts": {
"test": "make test-unit; make test;"
},
"repository": {
"type": "git",
"url": "https://github.com/aheckmann/gm.git"
},
"license": "MIT",
"devDependencies": {
"gleak": "0.4.0",
"async": "~0.2.7"
},
"dependencies": {
"debug": "0.7.0",
"array-series": "~0.1.0",
"array-parallel": "~0.1.0",
"stream-to-buffer": "~0.0.1"
}
, "license": "MIT"
, "devDependencies": {
"gleak": "0.4.0",
"async": "~0.2.7"
}
, "dependencies": {
"debug": "0.7.0",
"array-series": "~0.1.0",
"array-parallel": "~0.1.0",
"through": "~2.3.1",
"stream-to-buffer": "~0.0.1"
}
}
}

@@ -1,2 +0,2 @@

# gm v1.12.0 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm)
# gm v1.12.1 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm)

@@ -3,0 +3,0 @@ GraphicsMagick for node

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