Skip to content

Commit

Permalink
Setup the first version (0.0.1) and publish to npm.
Browse files Browse the repository at this point in the history
  • Loading branch information
danpres14 committed Nov 2, 2012
1 parent 9f1ec88 commit 7ef786f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,11 +1,23 @@
{ {
"name": "redisMsgQueue", "version": "0.0.1",
"name": "redis-msg-queue",
"description": "A lightweight message queue using redis as the data store.", "description": "A lightweight message queue using redis as the data store.",
"author": "Dan Prescott <danpres14@gmail.com> - Short Line Design Inc.", "author": "Dan Prescott <danpres14@gmail.com> - Short Line Design Inc.",
"homepage": "https://github.com/Short-Line-Design/redisMsgQueue",
"repository": {
"type": "git",
"url": "git@github.com:Short-Line-Design/RedisMsgQueue.git"
},
"dependencies": { "dependencies": {
"underscore": "1.4.x" "underscore": "1.4.x"
}, },
"devDependencies": { "devDependencies": {
}, },
"engine": "node >= 0.8.9" "engines": {
"node": ">= 0.8.9"
},
"keywords": [
"message queue",
"redis"
]
} }
2 changes: 1 addition & 1 deletion readme.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ undefined) such that each task is passed to a single worker's callback function.


### Installation ### Installation


$ npm install redisMsgQueue $ npm install redis-msg-queue




### API ### API
Expand Down

0 comments on commit 7ef786f

Please sign in to comment.