-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 839 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
{
"name": "kongo",
"version": "0.0.7",
"description": "Coroutine based mongo driver for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha -w",
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "git://github.com/rschmukler/kongo"
},
"keywords": [
"mongo",
"generators",
"ecma6",
"coroutines"
],
"author": "Ryan Schmukler <ryan@slingingcode.com> (http://slingingcode.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rschmukler/kongo/issues"
},
"devDependencies": {
"mocha": "~1.14.0",
"expect.js": "~0.2.0",
"co": "~2.3.0",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.3.0",
"blanket": "~1.1.5"
},
"dependencies": {
"mongodb": "~1.4.0"
}
}