UNPKG

1.96 kBJSONView Raw
1{
2 "name": "mongodb-memory-server-core",
3 "version": "5.2.4",
4 "description": "MongoDB Server for testing (core package, without autodownload). The server will allow you to connect your favourite ODM or client library to the MongoDB Server and run parallel integration tests isolated from each other.",
5 "main": "lib/index",
6 "types": "lib/index.d.ts",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/nodkz/mongodb-memory-server.git",
10 "directory": "packages/mongodb-memory-server-core"
11 },
12 "files": [
13 "lib",
14 "scripts"
15 ],
16 "keywords": [
17 "mongodb",
18 "mongoose",
19 "mock",
20 "stub",
21 "mockgoose",
22 "mongodb-prebuilt",
23 "mongomem"
24 ],
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/nodkz/mongodb-memory-server/issues"
28 },
29 "homepage": "https://github.com/nodkz/mongodb-memory-server",
30 "dependencies": {
31 "camelcase": "^5.3.1",
32 "cross-spawn": "^6.0.5",
33 "debug": "^4.1.1",
34 "decompress": "^4.2.0",
35 "dedent": "^0.7.0",
36 "find-cache-dir": "^3.0.0",
37 "find-package-json": "^1.2.0",
38 "get-port": "^5.0.0",
39 "getos": "^3.1.1",
40 "https-proxy-agent": "^2.2.1",
41 "lockfile": "^1.0.4",
42 "md5-file": "^4.0.0",
43 "mkdirp": "^0.5.1",
44 "tmp": "^0.1.0",
45 "uuid": "^3.2.1"
46 },
47 "optionalDependencies": {
48 "mongodb": ">=3.2.7"
49 },
50 "scripts": {
51 "build": "npm-run-all build:*",
52 "build:ts": "rimraf ./lib && tsc -p ./tsconfig.json",
53 "disabled-build:flow": "find ./lib -name \"*.d.ts\" -exec bash -c './node_modules/.bin/flowgen --add-flow-header \"$1\" -o \"${1%.d.ts}\".js.flow' - '{}' \\;",
54 "watch": "cross-env MONGOMS_DOWNLOAD_DIR=./tmp jest --watch",
55 "coverage": "cross-env MONGOMS_DOWNLOAD_DIR=./tmp jest --coverage",
56 "lint": "eslint 'src/**/*.{js,ts}'",
57 "test": "npm run lint && npm run tscheck && npm run coverage",
58 "tscheck": "tsc --noEmit"
59 },
60 "gitHead": "983d9a38a94c60108e69911ff1ab51b73f9e617b"
61}