html-to-text/node-html-to-text

View on GitHub
packages/html-to-md/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@html-to/md",
  "version": "0.5.0-next1",
  "description": "Advanced html to markdown converter",
  "keywords": [
    "html",
    "markdown",
    "converter",
    "html-to-md",
    "html-to-markdown",
    "html2md"
  ],
  "license": "MIT",
  "author": "KillyMXI <killy@mxii.eu.org>",
  "homepage": "https://github.com/html-to-text/node-html-to-text",
  "repository": {
    "type": "git",
    "url": "git://github.com/html-to-text/node-html-to-text.git"
  },
  "bugs": {
    "url": "https://github.com/html-to-text/node-html-to-text/issues"
  },
  "type": "module",
  "main": "./lib/html-to-md.cjs",
  "module": "./lib/html-to-md.mjs",
  "exports": {
    "import": "./lib/html-to-md.mjs",
    "require": "./lib/html-to-md.cjs"
  },
  "files": [
    "lib",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "build:rollup": "rollup -c",
    "build": "npm run clean && npm run build:rollup && npm run copy:license",
    "clean": "rimraf lib",
    "copy:license": "copyfiles -f ../../LICENSE .",
    "cover": "c8 --reporter=lcov --reporter=text-summary ava -t 20000",
    "test": "ava"
  },
  "dependencies": {
    "@selderee/plugin-htmlparser2": "^0.11.0",
    "deepmerge": "^4.3.1",
    "dom-serializer": "^2.0.0",
    "domutils": "^3.0.1",
    "htmlparser2": "^8.0.2",
    "selderee": "^0.11.0"
  },
  "ava": {
    "files": ["test/**/*.js"],
    "nodeArguments": [
      "--experimental-specifier-resolution=node"
    ]
  }
}