{
  "name": "pdf2pic",
  "version": "1.1.1",
  "description": "Node module for converting PDF to image based on pdf2img by Fitra Adity",
  "main": "index.js",
  "license": "MIT",
  "homepage": "https://github.com/yakovmeister/pdf2image",
  "repository": {
    "type": "git",
    "url": "https://github.com/yakovmeister/pdf2image.git"
  },
  "scripts": {
    "clean": "rm -rf ./lib && mkdir ./lib",
    "clean:test": "rm -rf ./test/o && mkdir ./test/o",
    "clean:compile": "rm -rf ./lib/compiled",
    "compile:babel": "babel-compile -p es2017 -p es2015 src:lib/compiled",
    "compile:minify": "minify lib/compiled -d lib",
    "compile": "npm run clean && npm run compile:babel && npm run compile:minify && npm run clean:compile",
    "test": "npm run clean:test && _mocha test"
  },
  "keywords": [
    "pdf to image",
    "pdf to jpg",
    "pdf to png",
    "pdf",
    "image",
    "pdf2img",
    "pdf2image",
    "gm"
  ],
  "author": "Jacob Baring <owari@waifu.club>",
  "dependencies": {
    "bluebird": "^3.5.1",
    "fs-extra": "^4.0.2",
    "gm": "^1.23.0",
    "gm-base64": "^1.1.1"
  },
  "devDependencies": {
    "babel-cli": "^6.24.0",
    "babel-compile": "^2.0.0",
    "babel-minify": "^0.2.0",
    "babel-plugin-syntax-async-functions": "^6.1.4",
    "babel-plugin-transform-regenerator": "^6.1.4",
    "babel-preset-es2015": "^6.24.0",
    "babel-preset-es2017": "^6.24.1",
    "babel-preset-stage-2": "^6.22.0",
    "babel-register": "^6.24.0",
    "mocha": "^4.0.1"
  }
}
