This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "mongodb-runner",
"contributors": [
"Addison Elliott <addison.elliott@gmail.com> (https://github.com/addisonElliott)"
],
"version": "4.10.0",
"author": "Lucas Hrabovsky <hrabovsky.lucas@gmail.com> (https://imlucas.com)",
"description": "The easiest way to test your code against MongoDB Server.",
"scripts": {
"check": "mongodb-js-precommit",
"test": "mocha"
},
"bin": {
"mongodb-runner": "./bin/mongodb-runner.js"
},
"homepage": "http://github.com/mongodb-js/runner",
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/runner.git"
},
"check": {
"entries": [
"bin/*.js"
],
"ignore": [
"coverage/{*,**/*}"
]
},
"dependency-check": {
"entries": [
"mocha/after.js",
"mocha/before.js"
]
},
"keywords": [
"mongodb",
"mongodb.js"
],
"pkg": {
"scripts": "bin/*.js",
"assets": "usage.txt"
},
"license": "Apache-2.0",
"dependencies": {
"async": "^3.1.0",
"clui": "^0.3.6",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"is-mongodb-running": "^1.0.1",
"lodash.defaults": "^4.2.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mongodb": "^3.4.0",
"mongodb-dbpath": "^0.0.1",
"mongodb-tools": "github:mongodb-js/mongodb-tools#0d1a90f49796c41f6d47c7c7999fe384014a16a0",
"mongodb-version-manager": "^1.5.0",
"untildify": "^4.0.0",
"which": "^2.0.1"
},
"devDependencies": {
"eslint-config-mongodb-js": "^5.0.3",
"kill-mongodb": "^1.0.1",
"mocha": "^7.0.0",
"mongodb-js-precommit": "^2.0.0",
"tmp": "^0.1.0"
}
}