forked from ageitgey/node-unfluff
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 KB
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": "node-article-extractor",
"version": "1.1.2",
"description": "A web page content extractor",
"homepage": "https://github.com/ahkimkoo/node-article-extractor",
"keywords": [
"content extraction",
"html",
"scraping",
"scrape",
"web page",
"body text"
],
"author": {
"name": "Cherokee Liu",
"email": "successage@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ahkimkoo/node-article-extractor"
},
"bugs": "https://github.com/ahkimkoo/node-article-extractor/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.22.0",
"lodash": "~4.17.4",
"nodejieba": "^2.2.5",
"optimist": "~0.6.1",
"xregexp": "~3.2.0"
},
"devDependencies": {
"commonjs-everywhere": "0.9.x",
"mocha": "~3.4.1",
"scopedfs": "~0.1.0",
"semver": "~5.3.0",
"deep-equal": "~1.0.1"
},
"scripts": {
"test": "make test"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/ahkimkoo/node-article-extractor/blob/master/LICENSE"
}
]
}