UNPKG

easyimage

Version:

A promise-based, user-friendly module for processing images in Node.js

72 lines (71 loc) 1.85 kB
{ "name": "easyimage", "version": "3.1.1", "description": "A promise-based, user-friendly module for processing images in Node.js", "license": "MIT", "main": "lib/easyimage.js", "types": "types/easyimage.d.ts", "scripts": { "test": "npm run lint && npm run mocha", "lint": "tslint -c tslint.json src/**/*.ts test/specs/*.ts", "mocha": "mocha -r ts-node/register --timeout 5000 test/specs/*spec.ts", "build": "npm run clean && npm run src && npm run doc", "doc": "typedoc src/execute.ts src/options.ts src/commands/* src/errors/*", "src": "tsc", "clean": "rimraf ./docs/* && rimraf ./lib/*" }, "author": { "name": "Hage Yaapa", "email": "captain@hacksparrow.com" }, "maintainers": [ { "name": "Kevin Gravier", "email": "kevin@mrkmg.com", "web": "https://github.com/mrkmg" } ], "keywords": [ "imagemagick", "image", "graphics", "process", "convert", "resize", "crop", "thumbnail", "promise" ], "repository": { "type": "git", "url": "https://github.com/hacksparrow/node-easyimage.git" }, "dependencies": { "bluebird": "^3.5.1", "mkdirp": "^0.5.0", "nanoid": "^1.0.2", "tslib": "^1.8.1", "typescript": "^3.3.0" }, "devDependencies": { "@types/bluebird": "^3.5.19", "@types/chai": "^4.1.0", "@types/chai-as-promised": "^7.1.0", "@types/mkdirp": "^0.5.2", "@types/mocha": "^2.2.46", "@types/nanoid": "^1.0.0", "@types/node": "=4", "@types/rimraf": "^2.0.2", "@types/sinon": "^4.1.3", "@types/sinon-chai": "^2.7.29", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "mocha": "^4.1.0", "rimraf": "^2.6.2", "sinon": "^4.1.6", "sinon-chai": "^2.14.0", "ts-node": "^4.1.0", "tslint": "^5.9.1", "typedoc": "^0.14.2" } }