werk85/node-html-to-text

View on GitHub
packages/html-to-text-cli/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@html-to/text-cli",
  "version": "0.5.4",
  "description": "CLI html to plain text converter",
  "keywords": [
    "html",
    "node",
    "text",
    "converter",
    "html-to-text",
    "cli-wrapper"
  ],
  "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",
  "bin": {
    "html-to-text": "./bin/cli.js"
  },
  "files": [
    "bin",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=14.13.1"
  },
  "scripts": {
    "build:rollup": "rollup -c",
    "build": "npm run clean && npm run build:rollup && npm run copy:license",
    "clean": "rimraf bin",
    "copy:license": "copyfiles -f ../../LICENSE ."
  },
  "dependencies": {
    "@selderee/plugin-htmlparser2": "^0.11.0",
    "aspargvs": "^0.6.0",
    "deepmerge": "^4.3.1",
    "htmlparser2": "^8.0.2",
    "selderee": "^0.11.0"
  }
}