forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 817 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": "4.0.0",
"description": "Message queues which uses MongoDB.",
"main": "mongodb-queue.js",
"scripts": {
"test": "set -e; for FILE in test/*.js; do echo --- $FILE ---; node $FILE; done"
},
"dependencies": {},
"devDependencies": {
"async": "^2.6.2",
"mongodb": "^3.1.13",
"tape": "^4.10.1"
},
"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": "[email protected]"
},
"author": {
"name": "Andrew Chilton",
"email": "[email protected]",
"url": "http://chilts.org/"
},
"license": "MIT",
"keywords": [
"mongodb",
"queue"
]
}