forked from kissjs/node-mongoskin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 KB
/
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": "mongoskin",
"description": "The future layer above node-mongodb-native",
"version": "1.4.4",
"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"
},
"dependencies": {
"mongodb": "1.4.4"
},
"devDependencies": {
"mocha": "~1.17.1",
"blanket": "~1.1.6",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1",
"travis-cov": "~0.2.5",
"should": "~3.1.2"
},
"config": {
"blanket": {
"pattern": "mongoskin/lib"
},
"travis-cov": {
"threshold": 95
}
},
"scripts": {
"test": "./node_modules/.bin/mocha -R travis-cov"
},
"directories": {
"example": "./examples",
"lib": "./lib/mongoskin"
},
"license": "MIT"
}