-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 843 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
{
"name": "rss-to-json-feed",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "npx mocha"
},
"author": "@CAYdenberg",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^5.2.0"
},
"dependencies": {
"entities": "^1.1.1",
"lodash.get": "^4.4.2",
"moment": "^2.19.1",
"xml2js": "^0.4.17"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CAYdenberg/rss-to-json-feed.git"
},
"bugs": {
"url": "https://github.com/CAYdenberg/rss-to-json-feed/issues"
},
"homepage": "https://github.com/CAYdenberg/rss-to-json-feed#readme",
"description": "Convert RSS and ATOM feeds to the JSON Feed format",
"keywords": [
"RSS",
"ATOM",
"RSS reader",
"RSS parser",
"JSON Feed"
]
}