-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
executable file
·64 lines (64 loc) · 1.46 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
64
{
"version": "7.1.3",
"name": "@extractus/feed-extractor",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://extractor-demos.pages.dev",
"repository": {
"type": "git",
"url": "[email protected]: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": ">= 18"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "node build",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage=true",
"eval": "node eval",
"reset": "node reset"
},
"dependencies": {
"bellajs": "^11.1.3",
"cross-fetch": "^4.0.0",
"fast-xml-parser": "^4.3.6",
"html-entities": "^2.5.2"
},
"devDependencies": {
"esbuild": "^0.21.0",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"https-proxy-agent": "^7.0.4",
"jest": "^29.7.0",
"nock": "^13.5.4"
},
"keywords": [
"extractor",
"parser",
"feed",
"rss",
"atom",
"util"
],
"license": "MIT"
}