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
57 lines (57 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.46 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
56
57
{
"version": "1.6.4",
"name": "article-parser",
"description": "Extract clean article data from given URL.",
"homepage": "https://www.npmjs.com/package/article-parser",
"repository": {
"type": "git",
"url": "git@github.com:ndaidong/article-parser.git"
},
"author": "@ndaidong",
"main": "./index.js",
"engines": {
"node": ">= 6.0"
},
"scripts": {
"lint": "eslint ./src ./test",
"nsp": "nsp check --output checkstyle",
"start": "DEBUG=*:* node index",
"tape": "nyc tape test/start.js | tap-spec",
"tape:debug": "DEBUG=*:* nyc tape test/start.js | tap-spec",
"report": "nyc report --reporter=lcov > coverage.lcov && codecov",
"pretest": "npm run lint && npm run nsp",
"test": "npm run tape",
"posttest": "CODECOV_TOKEN=333f996e-e6e9-4104-81c7-dab48dcd5561 npm run report",
"reset": "node reset"
},
"dependencies": {
"bellajs": "7.x.x",
"cheerio": "1.0.0-rc.1",
"debug": "2.x.x",
"es6-readability": "0.x.x",
"node-fetch": "1.x.x",
"promise-wtf": "1.x.x",
"sanitize-html": "1.x.x",
"stabilize.js": "2.x.x"
},
"devDependencies": {
"chance": "1.x.x",
"codecov": "2.x.x",
"eslint": "4.x.x",
"eslint-config-ggc": "1.x.x",
"nock": "9.x.x",
"nsp": "2.x.x",
"nyc": "11.x.x",
"sinon": "2.x.x",
"tap-spec": "4.x.x",
"tape": "4.x.x"
},
"keywords": [
"article",
"extractor",
"parser",
"readability",
"util"
],
"license": "MIT"
}