-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 988 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
44
45
46
47
48
{
"name": "mongoprime",
"version": "2.0.0",
"description": "In memory MongoDB fixture loader for parallel testing.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"mongo": "^0.1.0",
"mongo-wire-protocol": "^1.0.0",
"mongodb": "^3.0.0-rc0",
"mongodb-prebuilt": "^6.3.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"ava": "^0.22.0"
},
"scripts": {
"test": "ava test/unit/index.spec.js"
},
"keywords": [
"parallel",
"mocha",
"mongo",
"mongoose",
"fixtures",
"integration",
"testing",
"unit",
"e2e",
"parallel-testing",
"ava"
],
"author": "cyberwombat",
"license": "ISC",
"homepage": "https://github.com/cyberwombat/mongoprime",
"repository": {
"type": "git",
"url": "git+https://github.com/cyberwombat/mongoprime.git"
},
"bugs": {
"url": "https://github.com/cyberwombat/mongoprime/issues"
}
}