{
  "name": "@chuyik/quill-blot-formatter",
  "version": "1.2.0",
  "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/Fandom-OSS/quill-blot-formatter",
  "bugs": {
    "url": "https://github.com/Fandom-OSS/quill-blot-formatter/issues"
  },
  "contributors": [
    {
      "name": "Nelson Monterroso",
      "email": "nmonterroso@users.noreply.github.com",
      "url": "https://github.com/nmonterroso"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Fandom-OSS/quill-blot-formatter"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "quill",
    "blot",
    "image",
    "resize"
  ],
  "license": "Apache-2.0",
  "dependencies": {
    "deepmerge": "^2.0.0"
  },
  "peerDependencies": {
    "quill": "1.x"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^8.0.1",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-preset-env": "^1.6.1",
    "babel-preset-flow": "^6.23.0",
    "copyfiles": "^1.2.0",
    "eslint": "^4.9.0",
    "eslint-config-airbnb-base": "^12.1.0",
    "eslint-plugin-flowtype": "^2.39.1",
    "eslint-plugin-import": "^2.7.0",
    "flow-bin": "^0.57.3",
    "flow-copy-source": "^1.2.1",
    "npm-run-all": "^4.1.2",
    "quill": "^1.3.4",
    "rimraf": "^2.6.2",
    "webpack": "^3.8.1"
  },
  "scripts": {
    "build": "yarn clean && yarn build:babel && yarn build:webpack && yarn build:copy-flow-source && yarn build:copy-ts-defs",
    "build:babel": "babel src/ --out-dir dist",
    "build:copy-flow-source": "flow-copy-source --verbose src dist",
    "build:copy-ts-defs": "copyfiles index.d.ts dist",
    "build:webpack": "webpack -p --progress --colors",
    "clean": "rimraf dist",
    "dev:babel": "babel --watch src/ --out-dir dist",
    "dev:webpack": "yarn dev:delay && webpack --progress --colors --watch",
    "dev:delay": "node -e \"setTimeout(() => {}, 3000)\"",
    "prepublishOnly": "yarn build",
    "start": "yarn clean && yarn npm-run-all --race --parallel dev:babel dev:webpack"
  }
}
