forked from andris9/NodePie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 812 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
{
"name": "nodepie",
"description": "RSS/Atom parser for Node.JS",
"version": "0.5.0",
"author" : "Andris Reinman",
"maintainers":[
{
"name":"andris",
"email":"andris@node.ee"
}
],
"homepage": "http://github.com/andris9/nodepie",
"repository" : {
"type" : "git",
"url" : "http://github.com/andris9/nodepie.git"
},
"main" : "./lib/nodepie",
"licenses" : [
{
"type": "MIT",
"url": "http://github.com/andris9/nodepie/blob/master/LICENSE"
}
],
"devDependencies": {
"nodeunit": "*"
},
"dependencies": {
"xml2json":"*",
"iconv": "*",
"fetch": "*"
},
"engine": [ "node >=0.3.0" ],
"keywords": ["rss", "feed", "atom"]
}