{
  "name": "jimp",
  "version": "0.6.4",
  "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": "cross-env BABEL_ENV=test mocha --require @babel/register",
    "test:watch": "npm run test -- --reporter min --watch",
    "test:coverage": "nyc npm run test",
    "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 <oliver.moran@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "@babel/polyfill": "^7.0.0",
    "@jimp/custom": "^0.6.4",
    "@jimp/plugins": "^0.6.4",
    "@jimp/types": "^0.6.4",
    "core-js": "^2.5.7"
  },
  "devDependencies": {
    "@jimp/test-utils": "^0.6.4",
    "express": "^4.16.3"
  },
  "xo": false,
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "reporter": [
      "text",
      "text-summary",
      "lcov",
      "html"
    ],
    "exclude": [
      "src/modules/*.js",
      "test/*.js"
    ]
  },
  "gitHead": "7c9d3c817cade88d4a20422be10670d3c1528429"
}
