-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 929 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
{
"name": "cheerio-html-to-text",
"version": "0.4.4",
"description": "A Cheerio-based HTML to TEXT converter. Usefull for email and using Cheerio to avoid multiple parsing when coupled with Juice.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/s-leroux/cheerio-html-to-text.git"
},
"keywords": [
"html",
"text",
"email",
"converter",
"cheerio"
],
"author": "Sylvain Leroux <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-leroux/cheerio-html-to-text/issues"
},
"homepage": "https://github.com/s-leroux/cheerio-html-to-text#readme",
"devDependencies": {
"chai": "^4.0.2",
"chai-string": "^1.4.0",
"mocha": "^3.4.2",
"rewire": "^2.5.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.1",
"underscore": "^1.8.3"
}
}