UNPKG

@w-schmitt/jest-mongodb

Version:

Run your tests using Jest & MongoDB in Memory server

62 lines (61 loc) 1.18 kB
{ "name": "@w-schmitt/jest-mongodb", "version": "1.0.2", "description": "Run your tests using Jest & MongoDB in Memory server", "license": "MIT", "repository": "shelfio/W-Schmitt/jest-mongodb", "author": { "name": "Vlad Holubiev", "email": "vlad@shelf.io", "url": "shelf.io" }, "engines": { "node": ">=8" }, "scripts": { "lint": "eslint . --fix", "test": "jest" }, "keywords": [ "jest", "mongodb", "mongodb local", "jest preset", "jest environment" ], "dependencies": { "cwd": "0.10.0", "debug": "4.1.1", "mongodb": "3.2.5", "mongodb-memory-server-global": "^5.1.2" }, "devDependencies": { "@shelf/eslint-config": "0.3.5", "eslint": "5.16.0", "husky": "2.2.0", "jest": "24.8.0", "lint-staged": "8.1.7", "prettier": "1.17.1" }, "jest": { "preset": "./jest-preset.js" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ], "*.{html,json,md,yml}": [ "prettier --write", "git add" ] }, "publishConfig": { "access": "public" } }