forked from html-to-text/node-html-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 981 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
{
"name": "html-to-text",
"version": "1.3.1",
"description": "Advanced html to plain text converter",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha"
},
"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": {
"htmlparser": "1.x.x",
"underscore": "1.x.x",
"underscore.string": "2.x.x",
"optimist": "0.x.x"
},
"keywords": [
"html",
"node",
"text",
"mail",
"plain",
"converter"
],
"engines": {
"node": ">= 0.8.0 <=0.12 || <3"
},
"bin": {
"html-to-text": "./bin/cli.js"
},
"devDependencies": {
"chai": "^1.10.0",
"install": "^0.1.8",
"mocha": "^2.1.0"
}
}