-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.44 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
{
"version": "7.1.7",
"name": "@extractus/feed-extractor",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://github.com/extractus/feed-extractor",
"repository": {
"type": "git",
"url": "git@github.com:extractus/feed-extractor.git"
},
"author": "@extractus",
"main": "./src/main.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/main.js",
"require": "./bundle.cjs",
"default": "./src/main.js"
}
},
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js"
},
"browser": {
"cross-fetch": "./src/deno/cross-fetch.js"
},
"types": "./index.d.ts",
"engines": {
"node": ">= 20"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "node build",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test": "node --test --experimental-test-coverage",
"eval": "node eval",
"reset": "node reset"
},
"dependencies": {
"@ndaidong/bellajs": "^12.0.1",
"cross-fetch": "^4.1.0",
"fast-xml-parser": "^5.2.5",
"html-entities": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"globals": "^16.3.0",
"https-proxy-agent": "^7.0.6",
"nock": "^14.0.10"
},
"keywords": [
"extractor",
"parser",
"feed",
"rss",
"atom",
"util"
],
"license": "MIT"
}