-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 966 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
{
"name": "queuemongo",
"version": "0.1.1",
"description": "QueueMongo is a node.js client for a queue service built over MongoDB",
"main": "index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pleary/queuemongo.git"
},
"keywords": [
"mongo", "mongodb", "queue", "queuemongo", "client"
],
"author": "Patrick Leary <patrick.r.leary@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pleary/queuemongo/issues"
},
"dependencies": {
"mongodb": "^1.4.3",
"underscore": "^1.6.0"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.1",
"coveralls": "^2.10.0",
"istanbul": "^0.2.9",
"mocha-lcov-reporter": "0.0.1"
}
}