-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
38 lines (38 loc) · 802 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
{
"author": "William Kapke",
"name": "mongo-mock",
"version": "4.2.0",
"description": "Let's pretend we have a real MongoDB",
"main": "mongo-mock.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/williamkapke/mongo-mock.git"
},
"keywords": [
"mongo",
"mock"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/williamkapke/mongo-mock/issues"
},
"homepage": "https://github.com/williamkapke/mongo-mock",
"dependencies": {
"bson-objectid": "^2.0.1",
"debug": "^2.6.9",
"lodash": "^4.17.13",
"modifyjs": "^0.3.1",
"object-assign-deep": "^0.4.0",
"sift": "^11.1.8"
},
"devDependencies": {
"mocha": "^5",
"should": "^5"
},
"engines": {
"node": ">=6"
}
}