forked from extractus/article-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"version": "4.2.3",
"name": "article-parser",
"description": "To extract main article from given URL",
"homepage": "https://ndaidong.github.io/article-parser-demo/",
"repository": {
"type": "git",
"url": "git@github.com:ndaidong/article-parser.git"
},
"author": "@ndaidong",
"main": "./index.js",
"engines": {
"node": ">= 10.14.2"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --verbose --coverage=true --unhandled-rejections=strict",
"eval": "DEBUG=*:* node run",
"reset": "node reset"
},
"dependencies": {
"bellajs": "^9.2.0",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"html-minifier": "^4.0.0",
"node-fetch": "^2.6.0",
"oembed-parser": "^1.4.0",
"readabilitySAX": "^1.6.1",
"sanitize-html": "^1.27.3",
"string-comparison": "^1.0.7"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint-config-goes": "^1.1.8",
"jest": "^26.4.0",
"nock": "^13.0.4"
},
"keywords": [
"article",
"extractor",
"parser",
"readability",
"util"
],
"license": "MIT"
}