-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 931 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
{
"name": "mockgo",
"version": "2.0.1",
"description": "in memory mocking engine for mongodb",
"main": "index.js",
"scripts": {
"test": "mocha test.js",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seriousManual/mockgo.git"
},
"keywords": [
"mongodb",
"mongo",
"mock database",
"testing",
"mocking",
"inmemory",
"in memory"
],
"author": "Manuel Ernst <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seriousManual/mockgo/issues"
},
"homepage": "https://github.com/seriousManual/mockgo#readme",
"dependencies": {
"debug": "^4.1.0",
"mongodb": "^3.1.10",
"mongodb-prebuilt": "^6.4.0",
"portfinder": "^1.0.20"
},
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"async": "^2.6.1",
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}