-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 918 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
{
"name": "test-mongoose-inmemory",
"version": "1.0.0",
"description": "A sample project that demonstrates how to test mongoose operations through jest with an in-memory database.",
"main": "app.js",
"scripts": {
"test": "jest --runInBand ./test",
"lint": "./node_modules/.bin/eslint ./",
"lint-fix": "./node_modules/.bin/eslint ./ --fix"
},
"keywords": [
"mongoose",
"inmemory",
"test",
"jest",
"mongodb"
],
"author": "paula santamaría",
"license": "ISC",
"dependencies": {
"mongoose": "^5.13.7"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.0.6",
"mongodb-memory-server": "^7.3.6"
},
"jest": {
"testEnvironment": "node"
}
}