{
  "name": "html-dom-parser",
  "version": "1.0.4",
  "description": "HTML to DOM parser.",
  "author": "Mark <mark@remarkablemark.org>",
  "main": "index.js",
  "scripts": {
    "build": "rollup --config",
    "clean": "rm -rf dist",
    "lint": "eslint . --ignore-path .gitignore",
    "lint:dts": "dtslint .",
    "lint:fix": "npm run lint -- --fix",
    "_postinstall": "husky install",
    "postpublish": "pinst --enable",
    "prepublishOnly": "pinst --disable && run-s lint lint:dts test:server clean build",
    "release": "standard-version --no-verify",
    "size-limit": "size-limit",
    "test": "run-s test:server test:client",
    "test:client": "npm run test:client:watch -- --single-run",
    "test:client:build": "webpack --config webpack.test.config.js",
    "test:client:watch": "npm run test:client:build && karma start",
    "test:server": "nyc mocha test/server"
  },
  "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": {
    "domhandler": "4.3.0",
    "htmlparser2": "7.2.0"
  },
  "devDependencies": {
    "@commitlint/cli": "15.0.0",
    "@commitlint/config-conventional": "15.0.0",
    "@rollup/plugin-commonjs": "21.0.1",
    "@rollup/plugin-node-resolve": "13.0.6",
    "@size-limit/preset-big-lib": "5.0.3",
    "chai": "4.3.4",
    "dtslint": "4.2.1",
    "eslint": "8.4.0",
    "eslint-plugin-prettier": "4.0.0",
    "html-minifier": "4.0.0",
    "husky": "7.0.4",
    "jsdomify": "3.1.1",
    "karma": "6.3.9",
    "karma-chai": "0.1.0",
    "karma-chrome-launcher": "3.1.0",
    "karma-commonjs": "1.0.0",
    "karma-mocha": "2.0.1",
    "karma-mocha-reporter": "2.2.5",
    "lint-staged": "12.1.2",
    "mocha": "9.1.3",
    "mock-require": "3.0.3",
    "npm-run-all": "4.1.5",
    "nyc": "15.1.0",
    "pinst": "2.1.6",
    "prettier": "2.5.1",
    "rollup": "2.60.2",
    "rollup-plugin-terser": "7.0.2",
    "sinon": "12.0.1",
    "size-limit": "5.0.3",
    "standard-version": "9.3.2",
    "typescript": "4.5.2",
    "webpack": "4.46.0",
    "webpack-cli": "4.9.1"
  },
  "files": [
    "/dist",
    "/index.d.ts",
    "/lib"
  ],
  "browser": {
    "./index.js": "./lib/client/html-to-dom.js"
  },
  "license": "MIT"
}
