-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 933 Bytes
/
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
{
"name": "jsonify-that-feed",
"version": "1.2.2",
"description": "A simple library for turning Atom, RSS and JSON feeds into JSON Feed.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"prepublishOnly": "eslint . && rm -rf dist && tsc",
"build": "rm -rf dist && tsc"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://ghostreaderapp.com",
"repository": "https://github.com/Ghost-Reader-App/jsonify-that-feed",
"author": "Sayem Chowdhury",
"keywords": [
"rss",
"json",
"opml",
"feed",
"parser",
"atom",
"sy",
"syndication",
"xml"
],
"license": "MIT",
"private": false,
"dependencies": {
"fast-xml-parser": "^3.18.0",
"html-entities": "^2.1.0",
"mime": "^2.5.0"
},
"devDependencies": {
"@types/mime": "^2.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0"
}
}