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

imagemagick-cli

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imagemagick-cli - npm Package Compare versions

Comparing version

to
0.2.1

6

package.json
{
"name": "imagemagick-cli",
"version": "0.1.3",
"version": "0.2.1",
"description": "Access the ImageMagick CLI tools from Node. Cross-platform, with support for ImageMagick 6 and 7.",

@@ -32,7 +32,7 @@ "main": "./src/index.js",

"eslint-plugin-import": "^2.2.0",
"mocha": "^4.1.0",
"mocha": "^5.0.0",
"nyc": "^11.0.1",
"sinon": "^4.1.4"
"sinon": "^5.0.2"
},
"dependencies": {}
}
# node-imagemagick-cli
[![CircleCI](https://circleci.com/gh/dwmkerr/node-imagemagick-cli.svg?style=shield)](https://circleci.com/gh/dwmkerr/node-imagemagick-cli) [![Build status](https://ci.appveyor.com/api/projects/status/uwggloq6ooxq1vtj?svg=true)](https://ci.appveyor.com/project/dwmkerr/node-imagemagick-cli) [![codecov](https://codecov.io/gh/dwmkerr/node-imagemagick-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/dwmkerr/node-imagemagick-cli) [![dependencies Status](https://david-dm.org/dwmkerr/node-imagemagick-cli/status.svg)](https://david-dm.org/dwmkerr/node-imagemagick-cli) [![devDependencies Status](https://david-dm.org/dwmkerr/node-imagemagick-cli/dev-status.svg)](https://david-dm.org/dwmkerr/node-imagemagick-cli?type=dev)
[![CircleCI](https://circleci.com/gh/dwmkerr/node-imagemagick-cli.svg?style=shield)](https://circleci.com/gh/dwmkerr/node-imagemagick-cli) [![Build status](https://ci.appveyor.com/api/projects/status/uwggloq6ooxq1vtj?svg=true)](https://ci.appveyor.com/project/dwmkerr/node-imagemagick-cli) [![codecov](https://codecov.io/gh/dwmkerr/node-imagemagick-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/dwmkerr/node-imagemagick-cli) [![dependencies Status](https://david-dm.org/dwmkerr/node-imagemagick-cli/status.svg)](https://david-dm.org/dwmkerr/node-imagemagick-cli) [![devDependencies Status](https://david-dm.org/dwmkerr/node-imagemagick-cli/dev-status.svg)](https://david-dm.org/dwmkerr/node-imagemagick-cli?type=dev) [![Greenkeeper badge](https://badges.greenkeeper.io/dwmkerr/node-imagemagick-cli.svg)](https://greenkeeper.io/)

@@ -5,0 +5,0 @@ Access the ImageMagick CLI tools from Node. Cross-platform, with support for ImageMagick 6 and 7.

@@ -39,3 +39,3 @@ const childProcess = require('child_process');

// with the appropriate path and execute it.
const reconstructedCommand = `${mappedCli} ${parameters}`;
const reconstructedCommand = `"${mappedCli}" ${parameters}`;
childProcess.exec(reconstructedCommand, (err, stdout, stderr) => {

@@ -42,0 +42,0 @@ if (err) {

Sorry, the diff of this file is not supported yet