imagemagick-cli
Version:
Access the ImageMagick CLI tools from Node. Cross-platform, with support for ImageMagick 6 and 7.
43 lines (42 loc) • 1.38 kB
JSON
{
"name": "imagemagick-cli",
"version": "0.5.0",
"description": "Access the ImageMagick CLI tools from Node. Cross-platform, with support for ImageMagick 6 and 7.",
"main": "./src/index.js",
"scripts": {
"test": "mocha -name '*.spec.js' --recursive ./src",
"test:watch": "mocha -name '*.spec.js' --watch --recursive ./src",
"test:debug": "mocha --inspect --inspect-brk -name '*.spec.js' --recursive ./src",
"cov": "nyc --reporter text --reporter html --reporter lcov --report-dir './artifacts/coverage' --exclude '**/*.spec.js' npm test",
"lint": "eslint src",
"release": "standard-version",
"preversion": "echo 'error: use npm run release instead' && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/node-imagemagick-cli.git"
},
"keywords": [
"imagemagick",
"magick"
],
"author": "Dave Kerr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwmkerr/node-imagemagick-cli/issues"
},
"homepage": "https://github.com/dwmkerr/node-imagemagick-cli#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.3",
"nyc": "^14.0.0",
"sinon": "^7.3.2",
"standard-version": "^5.0.2"
},
"dependencies": {
"debug": "^4.1.1"
}
}