forked from kissjs/node-mongoskin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 989 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
{
"name": "mongoskin",
"description": "The future layer above node-mongodb-native",
"version": "2.1.0",
"author": "Gui Lin <[email protected]>",
"homepage": "https://github.com/kissjs/node-mongoskin",
"repository": {
"type": "git",
"url": "git://github.com/kissjs/node-mongoskin.git"
},
"bugs": {
"url": "https://github.com/kissjs/node-mongoskin/issues"
},
"main": "./index.js",
"keywords": [
"mongodb",
"database",
"nosql"
],
"engines": {
"node": ">= 0.4.0"
},
"peerDependencies": {
"mongodb": "^2.0"
},
"devDependencies": {
"istanbul": "0.3.17",
"mocha": "~1.17.1",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1",
"travis-cov": "~0.2.5",
"mongodb": "^2.0",
"should": "~3.1.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"coverage": "istanbul cover _mocha"
},
"directories": {
"example": "./examples",
"lib": "./lib/mongoskin"
},
"license": "MIT"
}