forked from danmactough/node-feedparser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
{
"name": "@integromat/feedparser",
"author": "Dan MacTough <[email protected]>",
"description": "Robust RSS Atom and RDF feed parsing using sax js",
"version": "1.1.5",
"keywords": [
"rss",
"feed",
"atom",
"rdf",
"xml",
"syndication",
"rsscloud",
"pubsubhubbub"
],
"license": "MIT",
"homepage": "http://github.com/danmactough/node-feedparser",
"repository": {
"type": "git",
"url": "[email protected]:integromat/node-feedparser.git"
},
"bugs": {
"url": "http://github.com/danmactough/node-feedparser/issues"
},
"main": "main.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"sax": "~0.6.0",
"addressparser": "~0.1.3",
"array-indexofobject": "~0.0.1",
"readable-stream": "~1.0.17"
},
"devDependencies": {
"iconv": "2.1.x",
"mocha": "~2.1.0",
"request": "2.27.x"
},
"scripts": {
"test": "mocha"
}
}