{
  "name": "quill-blot-formatter-mobile",
  "version": "1.1.2",
  "description": "a module for the Quill text editor to allow blots to be reformatted. Built in formatters: resize and realign. Built in blot support: images and iframe videos.",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "homepage": "https://github.com/juandjara/quill-blot-formatter-mobile",
  "bugs": {
    "url": "https://github.com/juandjara/quill-blot-formatter-mobile/issues"
  },
  "contributors": [
    {
      "name": "Nelson Monterroso",
      "email": "nmonterroso@users.noreply.github.com",
      "url": "https://github.com/nmonterroso"
    },
    {
      "name": "Juan D. Jara",
      "email": "juandjara@users.noreply.github.com",
      "url": "https://github.com/juandjara"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/juandjara/quill-blot-formatter-mobile"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "quill",
    "blot",
    "image",
    "resize"
  ],
  "license": "Apache-2.0",
  "dependencies": {
    "deepmerge": "^2.0.0",
    "webpack": "^5.20.2",
    "webpack-cli": "^4.5.0"
  },
  "peerDependencies": {
    "quill": "*"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.13",
    "@babel/core": "^7.12.13",
    "@babel/eslint-parser": "^7.12.13",
    "@babel/plugin-proposal-class-properties": "^7.12.13",
    "@babel/preset-env": "^7.12.13",
    "@babel/preset-flow": "^7.12.13",
    "copyfiles": "^2.4.1",
    "eslint": "^7.19.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-flowtype": "^5.2.0",
    "eslint-plugin-import": "^2.22.1",
    "flow-bin": "^0.144.0",
    "flow-copy-source": "^2.0.9",
    "npm-run-all": "^4.1.5",
    "quill": "^1.3.7",
    "rimraf": "^3.0.2"
  },
  "scripts": {
    "build": "yarn clean && yarn build:babel && yarn build:webpack && yarn build:copy-flow-source && yarn build:copy-ts-defs",
    "build:babel": "babel src/ -d dist",
    "build:copy-flow-source": "flow-copy-source --verbose src dist",
    "build:copy-ts-defs": "copyfiles index.d.ts dist",
    "build:webpack": "webpack --progress --color",
    "clean": "rimraf dist",
    "dev:babel": "babel --watch src/ -d dist",
    "dev:webpack": "yarn dev:delay && webpack --progress --color --watch",
    "dev:delay": "node -e \"setTimeout(() => {}, 3000)\"",
    "prepublishOnly": "yarn build",
    "start": "yarn clean && yarn npm-run-all --race --parallel dev:babel dev:webpack"
  }
}
