forked from html-to-text/node-html-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "html-to-text",
"version": "4.0.0",
"description": "Advanced html to plain text converter",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha && eslint .",
"example": "node ./example/html-to-text.js",
"lint": "eslint .",
"prepublish": "npm test"
},
"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.0.0",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.4",
"optimist": "^0.6.1"
},
"keywords": [
"html",
"node",
"text",
"mail",
"plain",
"converter"
],
"engines": {
"node": ">= 4.0.0"
},
"bin": {
"html-to-text": "./bin/cli.js"
},
"devDependencies": {
"chai": "^4.0.1",
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.2"
}
}