-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 931 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
43
44
45
{
"name": "feedjett",
"author": "Devin Jett <[email protected]>",
"description": "Fast and customizable RSS Atom and RDF feed parser",
"version": "0.0.8",
"keywords": [
"rss",
"feed",
"parser",
"parse",
"reader",
"atom",
"rdf",
"xml",
"syndication",
"rsscloud",
"pubsubhubbub"
],
"homepage": "https://github.com/djett41/node-feedjett",
"repository": {
"type": "git",
"url": "https://github.com/djett41/node-feedjett.git"
},
"bugs": {
"url": "https://github.com/djett41/node-feedjett/issues"
},
"main": "lib/feedjett.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"addressparser": "0.3.2",
"lodash": "^3.9.3",
"sax": "1.1.1",
"readable-stream": "~1.0.17"
},
"devDependencies": {
"mocha": "2.2.5",
"chai": "2.3.0",
"request": "2.57.0"
},
"scripts": {
"test": "mocha test/unit/**/*.js"
}
}