{ "name": "jimp", "version": "0.3.11", "description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies).", "main": "dist/index.js", "module": "es/index.js", "browser": "browser/lib/jimp.js", "types": "jimp.d.ts", "tonicExampleFilename": "example.js", "files": [ "browser", "dist", "es", "jimp.d.ts", "fonts" ], "repository": { "type": "git", "url": "https://github.com/oliver-moran/jimp.git" }, "bugs": { "url": "https://github.com/oliver-moran/jimp/issues" }, "scripts": { "test:browser": "cross-env BABEL_ENV=test ENV=browser CHROME_BIN=\"$(which chrome || which chromium)\" karma start --single-run", "test:browser:watch": "npm run -s test:browser start -- --auto-watch", "test:node": "cross-env BABEL_ENV=test mocha --require @babel/register", "test:node:watch": "npm run test:node -- --reporter min --watch", "test:node:coverage": "nyc npm run test:node", "test": "npm run -s test:node:coverage && npm run -s test:browser", "browser-build": "node tools/browser-build.js test", "build": "npm run build:browser && npm run build:node:production && npm run build:module", "build:watch": "npm run build:node:debug -- -- --watch --verbose", "build:debug": "npm run build:browser:debug && npm run build:node:debug", "build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js", "build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js", "build:node:debug": "cross-env BABEL_ENV=development npm run build:node", "build:node:production": "cross-env BABEL_ENV=production npm run build:node", "build:browser": "cross-env BABEL_ENV=production node tools/browser-build.js prepublish", "build:browser:debug": "cross-env BABEL_ENV=development ENV=browser node tools/browser-build.js prepublish" }, "keywords": [ "image", "image processing", "image manipulation", "png", "jpg", "jpeg", "bmp", "resize", "scale", "crop" ], "author": "Oliver Moran ", "license": "MIT", "dependencies": { "@babel/polyfill": "^7.0.0", "@jimp/custom": "^0.3.9", "@jimp/plugins": "^0.3.10", "@jimp/types": "^0.3.9", "core-js": "^2.5.7" }, "devDependencies": { "babelify": "^9.0.0", "browserify": "^16.2.2", "envify": "^4.1.0", "express": "^4.16.3", "husky": "^1.0.0-rc.13", "karma": "^3.0.0", "karma-browserify": "^5.3.0", "karma-chrome-launcher": "^2.2.0", "karma-firefox-launcher": "^1.1.0", "karma-mocha": "^1.3.0", "karma-mocha-reporter": "^2.2.5", "mocha": "^5.2.0", "nyc": "^13.0.1", "should": "^13.2.3", "tfilter": "^1.0.1", "uglify-js": "^3.4.8", "watchify": "^3.11.0" }, "xo": false, "nyc": { "sourceMap": false, "instrument": false, "reporter": [ "text", "text-summary", "lcov", "html" ], "exclude": [ "src/modules/*.js", "test/*.js" ] }, "gitHead": "2c1e45fd9a97e05046705931f05221a78e2675aa" }