forked from danmactough/node-feedparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 904 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": "feedparser",
"author": "Dan MacTough <[email protected]>",
"description": "Robust RSS Atom and RDF feed parsing using sax js",
"version": "0.16.1",
"keywords": [
"rss",
"feed",
"atom",
"rdf",
"xml",
"syndication",
"rsscloud",
"pubsubhubbub"
],
"homepage": "http://github.com/danmactough/node-feedparser",
"repository": {
"type": "git",
"url": "git://github.com/danmactough/node-feedparser.git"
},
"bugs": {
"url": "http://github.com/danmactough/node-feedparser/issues"
},
"main": "./main.js",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"sax": "0.5.x",
"addressparser": "~0.1.3",
"array-indexofobject": "0.0.1",
"readable-stream": "1.0.x",
"resanitize": "~0.1.10"
},
"devDependencies": {
"mocha": "1.x"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
}
}