-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 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
64
65
66
67
68
{
"name": "mongo-memory",
"version": "0.0.5",
"description": "mongodb in memory for testing or mocking",
"main": "index.js",
"scripts": {
"download": "node ./download.js",
"postinstall": "npm run download",
"test": "node ./node_modules/rimraf ./test/tempdb && node ./node_modules/mocha/bin/mocha tests",
"lint": "standard --fix ./**/*.js",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemerajs/mongo-memory.git"
},
"keywords": [
"mongodb",
"mongo",
"mock database",
"testing",
"mocking",
"inmemory",
"in memory",
"stubs",
"tdd"
],
"author": {
"name": "Dustin Deus",
"email": "deusdustin@gmail.com",
"url": "https://github.com/starptech"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hemerajs/mongo-memory/issues"
},
"homepage": "https://github.com/hemerajs/mongo-memory#readme",
"dependencies": {
"make-promises-safe": "^1.1.0",
"mkdirp": "^0.5.1",
"mongodb": "^2.2.31",
"mongodb-extended-json": "^1.10.0",
"mongodb-prebuilt": "^6.3.3"
},
"engines": {
"node": ">=4.0"
},
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^3.5.0",
"mongodb": "^2.2.31",
"rimraf": "^2.6.1",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"node_modules"
],
"envs": [
"es6",
"node",
"mocha"
],
"globals": []
}
}