forked from ageitgey/node-unfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.16 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
53
54
55
{
"name": "unfluff",
"version": "1.1.0",
"description": "A web page content extractor",
"homepage": "https://github.com/ageitgey/node-unfluff",
"keywords": [
"content extraction",
"html",
"scraping",
"scrape",
"web page",
"body text"
],
"author": {
"name": "Adam Geitgey",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ageitgey/node-unfluff"
},
"bugs": "https://github.com/ageitgey/node-unfluff/issues",
"engines": {
"node": "0.8.x || 0.9.x || 0.10.x"
},
"main": "lib/unfluff.js",
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"dependencies": {
"cheerio": "~0.17.0",
"optimist": "~0.6.1",
"lodash": "~2.4.1",
"xregexp": "~2.0.0"
},
"devDependencies": {
"coffee-script-redux": "2.0.0-beta7",
"commonjs-everywhere": "0.9.x",
"mocha": "~1.12.1",
"scopedfs": "~0.1.0",
"semver": "~2.1.0",
"deep-equal": "~0.2.1"
},
"scripts": {
"test": "make test"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/ageitgey/node-unfluff/blob/master/LICENSE"
}
]
}