-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "@petitchevalroux/node-feed-aggregator",
"version": "0.0.6",
"description": "Duplex stream and cli command which aggregate rss/atom feeds",
"main": "./src/aggregator.js",
"scripts": {
"test": "make tests"
},
"bin": {
"node-feed-aggregator": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/petitchevalroux/node-feed-aggregator.git"
},
"author": "Patrick Poulain",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/petitchevalroux/node-feed-aggregator/issues"
},
"homepage": "https://github.com/petitchevalroux/node-feed-aggregator#readme",
"devDependencies": {
"eslint": "^3.3.1",
"eslint-plugin-promise": "^2.0.1",
"istanbul": "^0.4.4",
"js-beautify": "^1.6.3",
"mocha": "^3.0.2",
"sinon": "^1.17.5"
},
"dependencies": {
"@petitchevalroux/error": "^1.0.1",
"async": "^2.1.4",
"bluebird": "^3.4.7",
"feedparser": "^2.2.1",
"minimist": "^1.2.0",
"request": "^2.79.0",
"rss": "^1.2.2",
"sort-stream": "^1.0.1"
}
}