{
  "name": "resize",
  "version": "1.2.0",
  "description": "Resize images from the command line",
  "keywords": [
    "Image",
    "Resize",
    "CLI",
    "Command Line"
  ],
  "author": {
    "name": "Arash Motamedi",
    "url": "https://arashmotamedi.com"
  },
  "homepage": "https://github.com/ArashMotamedi/resize",
  "repository": "https://github.com/ArashMotamedi/resize",
  "bugs": "https://github.com/ArashMotamedi/resize/issues",
  "license": "MIT",
  "bin": {
    "resize": "./bin/resize"
  },
  "scripts": {
    "_dev-build-once": "ttsc",
    "_dev-run-once-once": "node lib/index.js -d --then echo",
    "_dev-run-once-watch": "node lib/index.js -dw --and echo",
    "_dev-build-watch": "ttsc -w",
    "_dev-run-watch-once": "nodemon --watch js lib/index.js -- -d --then echo",
    "_dev-run-watch-watch": "nodemon --watch js lib/index.js -- -dw --and echo",
    "dev-once-once": "npm-run-all -s _dev-build-once _dev-run-once-once",
    "dev-once-watch": "npm-run-all -s _dev-build-once _dev-run-once-watch",
    "dev-watch-once": "npm-run-all -p _dev-build-watch _dev-run-watch-once",
    "dev-watch-watch": "npm-run-all -p _dev-build-watch _dev-run-watch-watch",
    "_dist-build-once": "ttsc --module \"ESNext\" --outDir distsrc",
    "_dist-webpack": "webpack",
    "_dist-clean": "shx rm -rf distsrc",
    "_dist-run": "node --trace-warnings dist/resize.js -d",
    "bundle": "npm-run-all -s _dist-build-once _dist-webpack _dist-clean",
    "prod": "npm-run-all -s bundle _dist-run",
    "prepublishOnly": "npm run bundle",
    "postpublish": "shx rm -rf dist",
    "echo": "shx echo 'hello'"
  },
  "dependencies": {
    "sharp": "^0.28.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.12.11",
    "@types/command-line-args": "^5.0.0",
    "@types/mkdirp": "^1.0.1",
    "@types/node": "^14.14.22",
    "@types/object-hash": "^1.3.4",
    "@types/sharp": "^0.27.3",
    "babel-loader": "^8.2.2",
    "babel-polyfill": "^6.26.0",
    "chokidar": "^3.5.1",
    "colors": "^1.4.0",
    "command-line-args": "^5.1.1",
    "mkdirp": "^1.0.4",
    "nodemon": "^2.0.7",
    "npm-run-all": "^4.1.5",
    "object-hash": "^2.1.1",
    "p-queue": "^6.6.2",
    "shx": "^0.3.3",
    "ts-essentials": "^7.0.1",
    "ts-node": "^9.1.1",
    "ts-transformer-enumerate": "^0.5.2",
    "ts-transformer-keys": "^0.4.3",
    "ttypescript": "^1.5.12",
    "typescript": "^4.1.3",
    "typescript-is": "^0.17.0",
    "webpack": "^5.16.0",
    "webpack-cli": "^4.4.0"
  }
}
