forked from zhanghaihua/mongodb-fs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.15 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
51
52
53
54
55
{
"name": "mongodb-fs",
"version": "0.1.0",
"description": "Mongo DB Fake Server",
"keywords": [
"mongodb",
"mongo",
"driver",
"db",
"mock",
"test"
],
"homepage": "https://github.com/vladlosev/mongodb-fs",
"main": "lib/server.js",
"scripts": {
"test": "mocha test/*_test.js test/commands/*_test.js",
"lint": "gulp lint"
},
"author": {
"name": "Olivier Penhoat",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/vladlosev/mongodb-fs.git"
},
"bugs": {
"url": "https://github.com/vladlosev/mongodb-fs/issues"
},
"licenses": [
{
"type": "EUPL",
"url": "https://github.com/vladlosev/mongodb-fs/blob/master/EUPL-1.1.txt"
}
],
"engines": {
"node": "*"
},
"dependencies": {
"bson": "0.5.4",
"lodash": "~3.10.0",
"log4js": "~0.6.26"
},
"devDependencies": {
"bluebird": "^2.9.33",
"chai": "~3.5.0",
"chai-properties": "~1.2.1",
"gulp": "^3.9.0",
"gulp-eslint": "^0.15.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"mocha": "^2.2.5",
"mongodb": "~3.2.7",
"mongoose": "~4.13.19"
}
}