forked from extractus/feed-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.38 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
55
56
57
58
59
60
61
62
63
{
"version": "6.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": "[email protected]:extractus/feed-extractor.git"
},
"author": "@extractus",
"main": "./src/main.js",
"type": "module",
"exports": {
"import": "./src/main.js",
"require": "./dist/cjs/feed-extractor.js"
},
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js"
},
"browser": {
"cross-fetch": "./src/deno/cross-fetch.js"
},
"types": "./index.d.ts",
"engines": {
"node": ">= 14"
},
"scripts": {
"lint": "standard .",
"lint:fix": "standard --fix",
"pretest": "npm run lint",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage=true",
"eval": "node eval",
"build": "node build",
"reset": "node reset"
},
"dependencies": {
"bellajs": "^11.1.1",
"cross-fetch": "^3.1.5",
"fast-xml-parser": "^4.0.12",
"html-entities": "^2.3.3"
},
"devDependencies": {
"esbuild": "^0.15.18",
"jest": "^29.3.1",
"nock": "^13.2.9",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"/dist",
"/examples"
]
},
"keywords": [
"extractor",
"parser",
"feed",
"rss",
"atom",
"util"
],
"license": "MIT"
}