Files
klz-cables.com/.pnpm-store/v10/files/15/12dc3823e958227f411133606a0ac53239cde140d0cd48012454a9dd8bc4f942911ca3873425d95951578449e4fa2a222b472f35f5aa89b914e040efca5651
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

63 lines
1.5 KiB
Plaintext

{
"name": "html-to-text",
"version": "9.0.5",
"description": "Advanced html to plain text converter",
"keywords": [
"html",
"node",
"text",
"mail",
"plain",
"converter"
],
"license": "MIT",
"author": "Malte Legenhausen <legenhausen@werk85.de>",
"contributors": [
"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-text.cjs",
"module": "./lib/html-to-text.mjs",
"exports": {
"import": "./lib/html-to-text.mjs",
"require": "./lib/html-to-text.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 mocha -t 20000",
"test": "mocha"
},
"dependencies": {
"@selderee/plugin-htmlparser2": "^0.11.0",
"deepmerge": "^4.3.1",
"dom-serializer": "^2.0.0",
"htmlparser2": "^8.0.2",
"selderee": "^0.11.0"
},
"mocha": {
"node-option": [
"experimental-specifier-resolution=node"
]
}
}