-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 907 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
42
{
"name": "rss-combiner",
"version": "0.0.5",
"description": "Combine multiple RSS feed sources into one",
"keywords": [
"rss",
"xml",
"atom",
"feed",
"rss feed",
"feed builder",
"feed combiner",
"combine rss feeds"
],
"main": "lib/index",
"scripts": {
"test": "mocha -u tdd --reporter spec"
},
"homepage": "http://github.com/awocallaghan/node-rss-combiner",
"author": {
"name": "Alex O'Callaghan",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/awocallaghan/node-rss-combiner.git"
},
"dependencies": {
"express": "^4.14.0",
"feedparser": "^1.1.4",
"lodash": "^4.13.1",
"q": "^1.4.1",
"request": "^2.72.0",
"rss": "^1.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.5.3"
}
}