forked from jpmonette/feed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@gaphub/feed",
"version": "5.2.4",
"description": "@gaphub/feed is a RSS, Atom, JSON feed and OPML generator/parser for Node.js, making content syndication simple and intuitive!",
"homepage": "https://github.com/gap-hub/feed",
"author": "Jon Zhang <jonzhang520s@gmail.com>",
"license": "MIT",
"type": "module",
"files": [
"lib"
],
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"unpkg": "./lib/index.iife.min.js",
"jsdelivr": "./lib/index.iife.min.js",
"types": "./lib/index.d.cts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
}
},
"scripts": {
"build": "NODE_OPTIONS=\"--max-old-space-size=6144\" rollup --config=rollup.config.ts --configPlugin=rollup-plugin-esbuild",
"prepublish": "pnpm run build",
"test": "jest --silent",
"test-travis": "jest --coverage"
},
"keywords": [
"rss",
"atom",
"feed",
"opml",
"syndication",
"xml",
"json",
"wrapper",
"blog",
"parser",
"generator"
],
"dependencies": {
"axios": "^1.7.7",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@rollup/plugin-terser": "^0.4.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.1",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.22.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rss-parser": "^3.13.0",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"engines": {
"node": ">=0.4.0"
},
"bugs": {
"url": "https://github.com/gap-hub/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gap-hub/feed"
},
"packageManager": "pnpm@9.6.0"
}