{
  "name": "markdown-it-incremental-dom",
  "version": "2.1.0",
  "description": "markdown-it renderer plugin by using Incremental DOM.",
  "main": "lib/markdown-it-incremental-dom.js",
  "engines": {
    "node": ">=6.14.4"
  },
  "author": {
    "name": "Yuki Hattori",
    "url": "https://github.com/yhatt"
  },
  "keywords": [
    "markdown-it-plugin",
    "markdown-it",
    "markdown",
    "incremental-dom"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/yhatt/markdown-it-incremental-dom"
  },
  "scripts": {
    "build": "npm-run-all --npm-path yarn --parallel build:*",
    "build:commonjs": "yarn --mutex file run clean:lib && babel src --out-dir lib",
    "build:browser": "yarn --mutex file run clean:dist && webpack --mode production",
    "clean": "npm-run-all --npm-path yarn --parallel clean:*",
    "clean:lib": "rimraf lib",
    "clean:dist": "rimraf dist",
    "coveralls": "cat coverage/lcov.info | coveralls",
    "format": "prettier \"**/*.{css,html,js,json,md,yml,yaml}\"",
    "format:check": "yarn --mutex file run format -l",
    "lint": "eslint .",
    "prepack": "npm-run-all --npm-path yarn --parallel lint test:coverage --sequential build",
    "preversion": "npm-run-all --npm-path yarn --parallel format:check lint test:coverage",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "version": "node version.js && git add -A CHANGELOG.md"
  },
  "license": "MIT",
  "files": [
    "lib/",
    "dist/"
  ],
  "devDependencies": {
    "@babel/cli": "^7.1.5",
    "@babel/core": "^7.1.6",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/polyfill": "^7.0.0",
    "@babel/preset-env": "^7.1.6",
    "babel-core": "^7.0.0-bridge",
    "babel-jest": "^23.6.0",
    "babel-loader": "8.0.4",
    "common-tags": "^1.8.0",
    "coveralls": "^3.0.2",
    "eslint": "^5.9.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-plugin-import": "^2.14.0",
    "incremental-dom": "^0.6.0",
    "jest": "^23.6.0",
    "jest-plugin-context": "^2.9.0",
    "markdown-it": "^8.4.2",
    "markdown-it-footnote": "^3.0.1",
    "markdown-it-sub": "^1.0.0",
    "npm-run-all": "^4.1.3",
    "prettier": "^1.15.2",
    "rimraf": "^2.6.2",
    "webpack": "^4.26.0",
    "webpack-cli": "^3.1.2"
  },
  "peerDependencies": {
    "incremental-dom": ">=0.5.0",
    "markdown-it": ">=4.0.0"
  },
  "dependencies": {
    "htmlparser2": "^3.10.0"
  },
  "jest": {
    "collectCoverageFrom": [
      "src/**/*.js"
    ],
    "coverageThreshold": {
      "global": {
        "lines": 95
      }
    },
    "testRegex": "(/(test|__tests__)/(?!_).*|(\\.|/)(test|spec))\\.js$"
  }
}
