{
  "name": "devextreme-quill",
  "version": "1.5.20",
  "description": "Core of the DevExtreme HtmlEditor",
  "author": "Developer Express Inc.",
  "main": "dist/dx-quill.js",
  "homepage": "https://js.devexpress.com/",
  "files": [
    "attributors",
    "blots",
    "core",
    "formats",
    "modules",
    "utils",
    "dist/dx-quill.js",
    "dist/dx-quill.core.js",
    "dist/dx-quill.min.js.map",
    "dist/dx-quill.min.js",
    "dist/dx-quill.core.css",
    "core.js",
    "polyfills.js",
    "quill.js",
    "index.d.ts"
  ],
  "config": {
    "ports": {
      "karma": "9876"
    }
  },
  "dependencies": {
    "core-js": "^3.19.1",
    "eventemitter3": "^4.0.0",
    "lodash.clonedeep": "^4.5.0",
    "lodash.isequal": "^4.5.0",
    "lodash.merge": "^4.5.0",
    "parchment": "2.0.0-dev.2",
    "quill-delta": "4.2.2"
  },
  "devDependencies": {
    "@babel/core": "^7.11.1",
    "@babel/eslint-plugin": "^7.14.5",
    "@babel/preset-env": "^7.11.0",
    "babel-loader": "^8.1.0",
    "babel-plugin-istanbul": "^6.0.0",
    "css-loader": "^5.2.5",
    "eslint": "^7.5.0",
    "eslint-config-airbnb": "^18.1.0",
    "eslint-config-prettier": "^6.10.1",
    "eslint-import-resolver-webpack": "~0.12.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^3.0.0",
    "highlight.js": "^9.18.1",
    "html-loader": "~1.1.0",
    "http-proxy": "^1.18.1",
    "http-server": "^0.12.3",
    "jasmine": "^3.5.0",
    "jasmine-core": "^3.5.0",
    "karma": "^6.3.2",
    "karma-chrome-launcher": "^3.1.0",
    "karma-coverage": "^2.0.3",
    "karma-jasmine": "^3.1.1",
    "karma-sauce-launcher": "^4.1.2",
    "lodash": "^4.17.20",
    "mini-css-extract-plugin": "~0.9.0",
    "ncp": "^2.0.0",
    "prettier": "^1.17.0",
    "puppeteer": "^19.2.2",
    "rimraf": "^3.0.2",
    "source-map-loader": "^1.1.2",
    "style-loader": "~1.1.3",
    "stylus": "~0.54.7",
    "stylus-loader": "^3.0.2",
    "terser-webpack-plugin": "^1.3.0",
    "ts-loader": "^6.2.2",
    "typescript": "^3.8.3",
    "wait-on": "^6.0.1",
    "webpack": "^4.42.1",
    "webpack-cli": "^3.3.11"
  },
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "https://github.com/DevExpress/devextreme-quill.git"
  },
  "bugs": {
    "url": "https://www.devexpress.com/support/"
  },
  "eslintConfig": {
    "extends": [
      "airbnb",
      "prettier"
    ],
    "env": {
      "browser": true,
      "commonjs": true,
      "es6": true
    },
    "parserOptions": {
      "ecmaVersion": 2020
    },
    "plugins": [
      "@babel",
      "prettier"
    ],
    "settings": {
      "import/resolver": {
        "webpack": {
          "config": "_develop/webpack.config.js"
        }
      }
    },
    "rules": {
      "arrow-body-style": [
        "off"
      ],
      "class-methods-use-this": [
        "off"
      ],
      "import/no-extraneous-dependencies": [
        "error",
        {
          "devDependencies": [
            "_develop/*.js",
            "test/**/*.js"
          ]
        }
      ],
      "no-param-reassign": [
        "off"
      ],
      "no-use-before-define": [
        "error",
        {
          "functions": false
        }
      ],
      "import/named": [
        "error"
      ],
      "max-classes-per-file": [
        "off"
      ],
      "prettier/prettier": "error"
    }
  },
  "eslintIgnore": [
    "dist/",
    "docs/",
    "node_modules/"
  ],
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all"
  },
  "scripts": {
    "install:legacy": "npm install --legacy-peer-deps",
    "clean": "rimraf dist/* && rimraf test/functional/example/src",
    "copy-dist": "ncp dist test/functional/example/src",
    "build": "npm run clean && npm run build:webpack",
    "build:prod": "npm run clean && npm run build:webpack-prod",
    "build:webpack": "webpack --config _develop/webpack.config.js && rimraf dist/dx-quill.core dist/dx-quill.bubble dist/dx-quill.snow",
    "build:webpack-prod": "webpack --config _develop/webpack.config.js --env.production && rimraf dist/dx-quill.core dist/dx-quill.bubble dist/dx-quill.snow",
    "lint": "eslint blots core formats modules test utils",
    "start": "npm run build && npm run copy-dist && http-server ./test/functional/example",
    "dev:test:unit": "npm run build && npm run test:unit",
    "ci:test:functional": "http-server ./test/functional/example > .http-log & HTTP_PID=$! && npm run test:functional && kill $HTTP_PID && cat .http-log",
    "test:functional": "wait-on http://127.0.0.1:8080/index.html -i 1000 -t 10000 && jasmine test/functional/epic.js",
    "test:unit": "karma start _develop/karma.config.js",
    "test:coverage": "webpack --env.coverage --config _develop/webpack.config.js && karma start _develop/karma.config.js --reporters coverage",
    "version": "npm version --no-git-tag-version"
  },
  "keywords": [
    "editor",
    "rich text",
    "wysiwyg"
  ]
}
