-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 928 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
{
"name": "hardcandy",
"version": "0.0.1",
"description": "periodically get stuff from the internet in an ephemeral manner (mostly tweets and rss) using polling",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"bugs": {
"url": "https://github.com/bnfinet/hardcandy/issues"
},
"repository": {
"type" : "git",
"url" : "https://github.com/bnfinet/hardcandy.git"
},
"keywords": [
"rss",
"twitter",
"hardcandy",
"download",
"polling"
],
"author": "Benjamin Foote <[email protected]> (http://bnf.net)",
"license": "MIT",
"dependencies": {
"feedparser": "~0.16.3",
"request": "~2.30.0",
"ntwitter": "~0.5.0",
"node-uuid": "~1.4.1"
},
"devDependencies": {
"grunt": "~0.4.2",
"chai": "~1.8.1",
"mocha": "~1.16.2",
"grunt-contrib-jshint": "~0.8.0"
}
}