UNPKG

1.14 kBJSONView Raw
1{
2 "name": "@shelf/jest-mongodb",
3 "version": "1.0.0",
4 "description": "Run your tests using Jest & MongoDB in Memory server",
5 "license": "MIT",
6 "repository": "shelfio/jest-mongodb",
7 "author": {
8 "name": "Vlad Holubiev",
9 "email": "vlad@shelf.io",
10 "url": "shelf.io"
11 },
12 "engines": {
13 "node": ">=8"
14 },
15 "scripts": {
16 "lint": "eslint . --fix",
17 "test": "jest"
18 },
19 "keywords": [
20 "jest",
21 "mongodb",
22 "mongodb local",
23 "jest preset",
24 "jest environment"
25 ],
26 "dependencies": {
27 "cwd": "0.10.0",
28 "mongodb": "3.2.3",
29 "mongodb-memory-server": "5.0.2"
30 },
31 "devDependencies": {
32 "@shelf/eslint-config": "0.2.2",
33 "eslint": "5.16.0",
34 "husky": "1.3.1",
35 "jest": "24.7.1",
36 "lint-staged": "8.1.5",
37 "prettier": "1.16.4"
38 },
39 "jest": {
40 "preset": "./jest-preset.js"
41 },
42 "husky": {
43 "hooks": {
44 "pre-commit": "lint-staged"
45 }
46 },
47 "lint-staged": {
48 "*.js": [
49 "eslint --fix",
50 "git add"
51 ],
52 "*.{html,json,md,yml}": [
53 "prettier --write",
54 "git add"
55 ]
56 },
57 "publishConfig": {
58 "access": "public"
59 }
60}