-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 895 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "mongo-queue",
"description": "Node.js job queue backed by MongoDB",
"version": "1.0.0",
"keywords": [
"queue",
"jobqueue",
"mongo",
"mongodb"
],
"author": "Tomas Carnecky",
"repository": {
"type": "git",
"url": "git://github.com/kof/node-mongo-queue"
},
"licenses": [
{
"type": "Unlicense",
"url": "http://unlicense.org/"
}
],
"engines": {
"node": ">=0.4.0"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/queue",
"dependencies": {
"mongodb": "^2.0.33"
},
"devDependencies": {
"coffee-script": "^1.9.3",
"lodash": "^3.9.3",
"qunit": "^0.7.6"
},
"scripts": {
"prepublish": "make compile",
"test": "make test"
},
"contributors": [
{
"name": "Oleg Slobodksoi",
"email": "[email protected]"
},
{
"name": "Hannes Gassert"
}
]
}