{
  "name": "html-dom-parser",
  "version": "0.2.3",
  "description": "HTML to DOM parser.",
  "author": "Mark <mark@remarkablemark.org>",
  "main": "index.js",
  "scripts": {
    "build": "run-s build:*",
    "build:min": "webpack index.js -o dist/html-dom-parser.min.js --mode production --output-library HTMLDOMParser --output-library-target umd",
    "build:unmin": "webpack index.js -o dist/html-dom-parser.js --mode development --output-library HTMLDOMParser --output-library-target umd",
    "clean": "rm -rf dist",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "dtslint": "dtslint .",
    "lint": "eslint . --ignore-path .gitignore",
    "lint:fix": "npm run lint -- --fix",
    "prepublishOnly": "run-s lint dtslint test clean build",
    "release": "standard-version --no-verify",
    "test": "run-s test:server test:client",
    "test:client": "npm run test:client:watch -- --single-run",
    "test:client:build": "webpack node_modules/htmlparser2/lib/index.js -o dist/htmlparser2.js --mode production --output-library htmlparser2 --output-library-target umd",
    "test:client:setup": "test -f dist/htmlparser2.js || npm run test:client:build",
    "test:client:watch": "npm run test:client:setup && karma start",
    "test:server": "mocha test/server",
    "test:server:coverage": "nyc npm run test:server",
    "test:server:coverage:report": "nyc report --reporter=html"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/remarkablemark/html-dom-parser"
  },
  "bugs": {
    "url": "https://github.com/remarkablemark/html-dom-parser/issues"
  },
  "keywords": [
    "html-dom-parser",
    "html",
    "dom",
    "parser",
    "htmlparser2",
    "pojo"
  ],
  "dependencies": {
    "@types/domhandler": "2.4.1",
    "domhandler": "2.4.2",
    "htmlparser2": "3.10.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.7",
    "dtslint": "^1.0.2",
    "eslint": "^6.6.0",
    "eslint-plugin-prettier": "^3.1.1",
    "html-minifier": "^4.0.0",
    "husky": "^3.0.9",
    "jsdomify": "^3.1.1",
    "karma": "^4.4.1",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-commonjs": "^1.0.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-phantomjs-launcher": "^1.0.4",
    "lint-staged": "^9.4.2",
    "mocha": "^6.2.2",
    "mock-require": "^3.0.3",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "prettier": "^1.18.2",
    "sinon": "^7.5.0",
    "standard-version": "^6",
    "webpack": "^4.41.2",
    "webpack-cli": "^3.3.10"
  },
  "files": [
    "/dist",
    "/index.d.ts",
    "/lib"
  ],
  "browser": {
    "./index.js": "./lib/html-to-dom-client.js"
  },
  "license": "MIT"
}
