forked from html-to-text/node-html-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "html-to-text",
"version": "6.0.0-next.0",
"description": "Advanced html to plain text converter",
"main": "index.js",
"scripts": {
"test": "mocha && eslint .",
"example": "node ./example/html-to-text.js",
"lint": "eslint .",
"cover": "nyc --reporter=lcov --reporter=text-summary npm run test",
"prepare": "npm run cover"
},
"author": {
"name": "Malte Legenhausen",
"email": "[email protected]"
},
"homepage": "https://github.com/werk85/node-html-to-text",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/werk85/node-html-to-text.git"
},
"bugs": {
"url": "https://github.com/werk85/node-html-to-text/issues"
},
"dependencies": {
"he": "^1.2.0",
"htmlparser2": "^4.1.0",
"minimist": "^1.2.5",
"lodash": "^4.17.15"
},
"keywords": [
"html",
"node",
"text",
"mail",
"plain",
"converter"
],
"engines": {
"node": ">=8.10.0"
},
"bin": {
"html-to-text": "./bin/cli.js"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"nyc": "^15.0.1",
"mocha": "^7.1.1"
}
}