-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
54 lines (54 loc) · 1.27 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
54
{
"version": "8.0.15",
"name": "@extractus/article-extractor",
"description": "To extract main article from given URL",
"homepage": "https://github.com/extractus/article-extractor",
"repository": {
"type": "git",
"url": "[email protected]: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": ">= 18"
},
"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.5.0",
"bellajs": "^11.2.0",
"cross-fetch": "^4.0.0",
"linkedom": "^0.18.5",
"sanitize-html": "2.13.1"
},
"devDependencies": {
"@types/sanitize-html": "^2.13.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"https-proxy-agent": "^7.0.5",
"nock": "^13.5.5"
},
"keywords": [
"article",
"extractor",
"parser",
"readability",
"util"
],
"license": "MIT"
}