-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "horseman-article-parser",
"version": "1.2.5",
"description": "Web Page Inspection Tool. Sentiment Analysis, Keyword Extraction, Named Entity Recognition & Spell Check",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js --fix",
"test": "node --test",
"merge:csv": "node scripts/merge-csv.js",
"sample:prepare": "node scripts/fetch-curated-urls.js",
"sample:single": "node scripts/single-sample-run.js",
"sample:batch": "node scripts/batch-sample-run.js",
"batch:crawl": "node scripts/batch-crawl.js",
"train:ranker": "node scripts/train-reranker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmacpro/horseman-article-parser.git"
},
"author": "Frank MacDonald",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fmacpro/horseman-article-parser/issues"
},
"homepage": "https://github.com/fmacpro/horseman-article-parser#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"absolutify": "^0.1.0",
"clean-html": "^2.0.1",
"compromise": "^14.14.4",
"dictionary-en-gb": "^3.0.0",
"dictionary-es": "^4.0.0",
"dictionary-fr": "^3.0.0",
"fast-xml-parser": "^4.4.1",
"franc": "^6.1.0",
"html-to-text": "^9.0.5",
"jquery": "^3.6.0",
"jsdom": "^26.1.0",
"lighthouse": "^12.8.2",
"lodash": "^4.17.21",
"nlcst-to-string": "^4.0.0",
"puppeteer": "^24.18.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-data-dir": "file:overrides/puppeteer-extra-plugin-user-data-dir",
"retext": "^9.0.0",
"retext-keywords": "^8.0.2",
"retext-language": "^1.0.1",
"retext-pos": "^5.0.0",
"retext-readability": "^8.0.0",
"retext-spell": "^6.1.0",
"sentiment": "^5.0.1",
"undici": "^7.15.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-promise": "^7.2.1",
"jpeg-js": "^0.4.4"
},
"overrides": {
"puppeteer-extra-plugin-user-data-dir": "file:overrides/puppeteer-extra-plugin-user-data-dir"
}
}