{
  "name": "node-html-markdown",
  "description": "Fast HTML to markdown cross-compiler, compatible with both node and the browser",
  "version": "1.3.0",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "compile": "tsc",
    "build": "yarn run clean && yarn run compile",
    "clean": "npx -y rimraf coverage dist **/*.tsbuildinfo",
    "------------- ": "-------------",
    "benchmark": "cd benchmark && yarn run benchmark quick",
    "benchmark:large": "cd benchmark && yarn run benchmark",
    "test": "jest",
    "test:coverage": "jest --collect-coverage",
    "-------------  ": "-------------",
    "prepare": "ts-patch patch tsc --silent && cd benchmark && yarn install"
  },
  "files": [
    "README.md",
    "CHANGELOG.md",
    "dist"
  ],
  "keywords": [
    "html",
    "markdown",
    "converter",
    "md",
    "html5",
    "node-html-parser",
    "fast-html-parser",
    "turndown"
  ],
  "author": {
    "name": "Ron S.",
    "url": "http://twitter.com/ron"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/crosstype/node-html-markdown.git"
  },
  "bugs": {
    "url": "https://github.com/crosstype/node-html-markdown/issues"
  },
  "homepage": "https://github.com/crosstype/node-html-markdown#readme",
  "license": "MIT",
  "engines": {
    "node": ">=10.0.0"
  },
  "dependencies": {
    "node-html-parser": "^6.1.1"
  },
  "devDependencies": {
    "@types/jest": "~28.1.1",
    "@types/node": "^18.11.5",
    "jest": "^29.2.2",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "ts-patch": "^2.0.2",
    "typescript": "^4.8.4",
    "rimraf": "^3.0.2"
  },
  "standard-version": {
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Fixes"
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "hidden": true
      },
      {
        "type": "perf",
        "hidden": true
      },
      {
        "type": "test",
        "hidden": true
      }
    ]
  }
}
