-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "horseman-article-parser",
"version": "0.9.0",
"description": "Web Page Inspection Tool. Sentiment Analysis, Keyword Extraction, Named Entity Recognition & Spell Check",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint . --ext .json --ext .js --fix",
"test": "node test.js",
"docs": "./node_modules/jsdoc-to-markdown/bin/cli.js index.js helpers.js | tee ./APIDOC.md"
},
"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",
"dependencies": {
"absolutify": "^0.1.0",
"clean-html": "^1.5.0",
"compromise": "^13.11.3",
"dictionary-en-gb": "^2.3.0",
"html-to-text": "^8.0.0",
"jquery": "^3.6.0",
"jsdom": "^16.7.0",
"lighthouse": "^8.2.0",
"lodash": "^4.17.21",
"nlcst-to-string": "^2.0.4",
"puppeteer": "^10.2.0",
"puppeteer-extra": "^3.1.9",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"retext": "^7.0.1",
"retext-keywords": "^5.0.0",
"retext-pos": "^2.0.2",
"retext-spell": "^3.0.0",
"sentiment": "^5.0.1",
"url": "^0.11.0",
"vfile-reporter-json": "^2.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"jsdoc-to-markdown": "^5.0.3"
}
}