forked from shelfio/jest-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 966 Bytes
/
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
{
"name": "jest-mongodb",
"version": "0.0.0",
"description": "A working example of MongoDB with Jest",
"license": "MIT",
"repository": "vladgolubev/jest-mongodb",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "vladholubiev.com"
},
"engines": {
"node": ">=8"
},
"private": true,
"scripts": {
"lint": "eslint . --fix",
"test": "jest"
},
"keywords": [],
"dependencies": {
"mongodb": "3.1.8",
"mongodb-memory-server": "2.6.2"
},
"devDependencies": {
"eslint": "5.8.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-prettier": "3.0.0",
"husky": "1.1.2",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"prettier": "1.14.3"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}