forked from html-to-text/node-html-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1016 Bytes
/
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
{
"name": "html-to-text",
"version": "2.0.0",
"description": "Advanced html to plain text converter",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha",
"example": "node ./example/html-to-text.js"
},
"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": "^0.5.0",
"htmlparser": "^1.7.7",
"optimist": "^0.6.1",
"underscore": "^1.8.3",
"underscore.string": "^3.2.3"
},
"keywords": [
"html",
"node",
"text",
"mail",
"plain",
"converter"
],
"engines": {
"node": ">= 0.10.0"
},
"bin": {
"html-to-text": "./bin/cli.js"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}