forked from Mockgoose/Mockgoose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
56
57
58
59
60
61
62
63
{
"name": "mockgoose",
"main": "built/mockgoose.js",
"types": "built/mockgoose.d.ts",
"description": "Mockgoose is an in memory database mock to allow for testing of applications that rely on Mongoose.",
"version": "7.3.5",
"author": {
"name": "Anthony McCormick",
"email": "[email protected]"
},
"contributors": [
"Jonathon Hill <[email protected]>",
"Joe Park <[email protected]>"
],
"keywords": [
"mongodb",
"mongoose",
"datastore",
"nosql",
"sql",
"db",
"database",
"mock",
"stub",
"in memory"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"pretest": "jshint src test",
"test": "mocha test"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"async": "^2.6.1",
"debug": "^4.0.1",
"fs-extra": "^7.0.0",
"https-proxy-agent": "^2.2.1",
"mongodb-prebuilt": "github:joebach71/mongodb-prebuilt",
"portfinder": "^1.0.13",
"rimraf": "^2.6.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/async": "^2.0.50",
"@types/fs-extra": "^5.0.4",
"@types/mongoose": "^4.6.1",
"@types/node": "^8.10.30",
"@types/node-uuid": "0.0.28",
"chai": "^4.1.2",
"jshint": "^2.9.6",
"mocha": "^5.2.0",
"mongoose": "*"
},
"bugs": {
"url": "https://github.com/Mockgoose/Mockgoose/issues"
},
"repository": "Mockgoose/Mockgoose",
"homepage": "https://github.com/Mockgoose/Mockgoose",
"readmeFilename": "README.md",
"license": "MIT"
}