{
  "name": "html-to-formatted-text",
  "version": "2.7.0",
  "description": "Convert HTML to formatted text",
  "main": "dist/index.js",
  "scripts": {
    "watch:test": "npm t -- -w",
    "test": "mocha src/index.test.js --require babel-core/register",
    "lint": "eslint src",
    "coverage": "nyc --reporter=html --reporter=text npm t",
    "check-coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
    "report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "build": "npm-run-all --parallel build:*",
    "build:main": "BABEL_ENV=production babel --copy-files --out-dir dist --ignore *.test.js src",
    "build:umd": "webpack --output-filename index.umd.js --mode production",
    "build:umd.min": "webpack --output-filename index.umd.min.js --mode production",
    "prebuild": "rimraf dist",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "travis-deploy-once": "travis-deploy-once"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lukeaus/html-to-formatted-text.git"
  },
  "keywords": [
    "html",
    "formatted",
    "text"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "author": {
    "name": "Luke Scott",
    "email": "luke.m.scott@gmail.com",
    "url": "http://lukescott.co"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lukeaus/html-to-formatted-text/issues"
  },
  "homepage": "https://github.com/lukeaus/html-to-formatted-text#readme",
  "dependencies": {
    "striptags": "3.1.1"
  },
  "devDependencies": {
    "babel-cli": "6.26.0",
    "babel-loader": "7.1.5",
    "babel-preset-env": "1.7.0",
    "babel-preset-minify": "0.4.3",
    "chai": "4.1.2",
    "commitizen": "2.10.1",
    "cz-conventional-changelog": "2.1.0",
    "eslint": "5.2.0",
    "eslint-config-standard": "11.0.0",
    "eslint-plugin-import": "2.13.0",
    "eslint-plugin-node": "7.0.1",
    "eslint-plugin-promise": "3.8.0",
    "eslint-plugin-standard": "3.1.0",
    "ghooks": "2.0.4",
    "mocha": "5.2.0",
    "npm-run-all": "4.1.3",
    "nyc": "12.0.2",
    "rimraf": "2.6.2",
    "semantic-release": "15.8.1",
    "travis-deploy-once": "5.0.1",
    "webpack": "4.16.2",
    "webpack-cli": "3.1.0"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "ghooks": {
      "pre-commit": "npm run lint && npm run coverage && npm run check-coverage"
    }
  }
}
