UNPKG

1.4 kBJSONView Raw
1{
2 "name": "html-to-text",
3 "version": "8.2.0",
4 "description": "Advanced html to plain text converter",
5 "license": "MIT",
6 "author": {
7 "name": "Malte Legenhausen",
8 "email": "legenhausen@werk85.de"
9 },
10 "homepage": "https://github.com/html-to-text/node-html-to-text",
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/html-to-text/node-html-to-text.git"
14 },
15 "bugs": {
16 "url": "https://github.com/html-to-text/node-html-to-text/issues"
17 },
18 "keywords": [
19 "html",
20 "node",
21 "text",
22 "mail",
23 "plain",
24 "converter"
25 ],
26 "engines": {
27 "node": ">=10.23.2"
28 },
29 "main": "index.js",
30 "bin": {
31 "html-to-text": "./bin/cli.js"
32 },
33 "scripts": {
34 "cover": "c8 --reporter=lcov --reporter=text-summary mocha -t 20000",
35 "example": "node ./example/html-to-text.js",
36 "lint": "eslint .",
37 "prepublishOnly": "npm run lint && npm test",
38 "test": "mocha"
39 },
40 "dependencies": {
41 "@selderee/plugin-htmlparser2": "^0.6.0",
42 "deepmerge": "^4.2.2",
43 "he": "^1.2.0",
44 "htmlparser2": "^6.1.0",
45 "minimist": "^1.2.6",
46 "selderee": "^0.6.0"
47 },
48 "devDependencies": {
49 "c8": "^7.10.0",
50 "chai": "^4.3.4",
51 "eslint": "^7.32.0",
52 "eslint-plugin-filenames": "^1.3.2",
53 "eslint-plugin-import": "^2.24.2",
54 "eslint-plugin-jsdoc": "^33.3.0",
55 "eslint-plugin-mocha": "^8.2.0",
56 "mocha": "^8.4.0"
57 }
58}