{
  "name": "nodejs-image-squeezer",
  "version": "1.2.16",
  "description": "A simple npm package for image compression powered by FFMPEG.",
  "main": "dist/ImageSqueezer.js",
  "types": "dist/ImageSqueezer.d.ts",
  "scripts": {
    "test": "jest",
    "build:production": "standard-version",
    "build:tsc": "./node_modules/.bin/tsc"
  },
  "keywords": [
    "image",
    "compression",
    "lossy",
    "ffmpeg"
  ],
  "author": "Joshua Clifford Reyes <reyesjoshuaclifford@gmail.com> (https://lorddashme.github.io/)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lorddashme/nodejs-image-squeezer.git"
  },
  "homepage": "https://github.com/lorddashme/nodejs-image-squeezer#readme",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-typescript": "^7.3.3",
    "@commitlint/cli": "^7.6.1",
    "@commitlint/config-conventional": "^7.6.0",
    "@types/image-size": "^0.7.0",
    "@types/jest": "^24.0.13",
    "@typescript-eslint/eslint-plugin": "^1.9.0",
    "@typescript-eslint/parser": "^1.9.0",
    "eslint": "^5.16.0",
    "husky": "^2.3.0",
    "jest": "^24.8.0",
    "lint-staged": "^8.1.7",
    "standard-version": "^6.0.1",
    "ts-jest": "^24.0.2",
    "typescript": "^3.4.5"
  },
  "dependencies": {
    "@types/image-size": "^0.7.0",
    "@types/node": "^12.0.2",
    "file-type": "^11.1.0",
    "image-size": "^0.7.4",
    "read-chunk": "^3.2.0"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "linters": {
      "**/src/*.{ts,tsx}": [
        "eslint"
      ]
    },
    "ignore": [
      "**/dist/*.min.js"
    ]
  }
}
