-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 992 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
{
"name": "rssee",
"author": "Jaakko-Heikki Heusala <[email protected]> (http://www.jhh.me)",
"description": "Node RSS EventEmitter",
"version": "0.0.5",
"homepage": "https://github.com/jheusala/node-rssee",
"repository": {
"type": "git",
"url": "git://github.com/jheusala/node-rssee.git"
},
"main": "lib/rssee.js",
"engines": {
"node": "*"
},
"bugs": {
"mail" : "[email protected]",
"url" : "https://github.com/jheusala/node-rssee/issues"
},
"directories": {
"lib":"./lib",
"examples":"./examples",
"test":"./test"
},
"dependencies": {
"easyrss": "https://github.com/jheusala/node-easyrss/tarball/master",
"snippets": "*"
},
"devDependencies": {
"nodeunit": "*",
"lint": "*",
"rss": "*",
"optimist": "*"
},
"scripts": {
"test": "./run-test.sh",
"lint": "./run-lint.sh"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/jheusala/node-rssee/blob/master/LICENSE.txt"
}]
}