forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 946 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 946 Bytes
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
43
{
"name": "mongodb-queue",
"version": "1.0.0",
"description": "Message queues which uses MongoDB.",
"main": "mongodb-queue.js",
"author": {
"name": "Andrew Chilton",
"email": "andychilton@gmail.com",
"url": "http://chilts.org/"
},
"homepage": "https://github.com/chilts/mongodb-queue",
"contributors": [],
"engines" : {
"node": ">= 0.10"
},
"dependencies": {},
"devDependencies": {
"tape": "^2.14.0",
"mongodb": "^1.4.9",
"async": "^0.9.0"
},
"repository": {
"type": "git",
"url": "git://github.com/chilts/mongodb-queue.git"
},
"bugs": {
"url": "http://github.com/chilts/mongodb-queue/issues",
"mail": "andychilton@gmail.com"
},
"licenses": [
{
"type": "MIT",
"url": "http://chilts.mit-license.org/2014/"
}
],
"keywords": [
"mongodb",
"queue"
],
"scripts": {
"test": "set -e; for FILE in test/*.js; do node $FILE; done"
}
}