-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"version": "8.0.20",
"name": "@extractus/article-extractor",
"description": "To extract main article from given URL",
"homepage": "https://github.com/extractus/article-extractor",
"repository": {
"type": "git",
"url": "git@github.com:extractus/article-extractor.git"
},
"author": "@extractus",
"main": "./src/main.js",
"type": "module",
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js"
},
"browser": {
"cross-fetch": "./src/deno/cross-fetch.js",
"linkedom": "./src/browser/linkedom.js"
},
"types": "./index.d.ts",
"engines": {
"node": ">= 20"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "node --test --experimental-test-coverage",
"eval": "node eval",
"reset": "node reset"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@ndaidong/bellajs": "^12.0.1",
"cross-fetch": "^4.1.0",
"linkedom": "^0.18.12",
"sanitize-html": "2.17.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/sanitize-html": "^2.16.0",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"https-proxy-agent": "^7.0.6",
"nock": "^14.0.10"
},
"keywords": [
"article",
"extractor",
"parser",
"readability",
"util"
],
"license": "MIT"
}