forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 797 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": "mongodb-queue",
"version": "1.0.1",
"description": "Message queues which uses MongoDB.",
"main": "mongodb-queue.js",
"scripts": {
"test": "set -e; for FILE in test/*.js; do node $FILE; done"
},
"dependencies": {},
"devDependencies": {
"tape": "^2.14.0",
"mongodb": "^2.0.39",
"async": "^0.9.0"
},
"homepage": "https://github.com/chilts/mongodb-queue",
"repository": {
"type": "git",
"url": "git://github.com/chilts/mongodb-queue.git"
},
"bugs": {
"url": "http://github.com/chilts/mongodb-queue/issues",
"mail": "andychilton@gmail.com"
},
"author": {
"name": "Andrew Chilton",
"email": "andychilton@gmail.com",
"url": "http://chilts.org/"
},
"license": "MIT",
"keywords": [
"mongodb",
"queue"
]
}