-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 916 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
{
"name": "pool-svc",
"version": "1.0.0",
"description": "pooling app svc",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon --watch src src/server.js",
"test": "env NODE_ENV=TEST jest --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/jairaja/pool-svc.git"
},
"keywords": [
"pooling",
"node",
"service"
],
"author": "rjain",
"license": "ISC",
"bugs": {
"url": "https://github.com/jairaja/pool-svc/issues"
},
"homepage": "https://github.com/jairaja/pool-svc#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.1"
},
"devDependencies": {
"jest": "^26.4.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/?(*.)+(spec|test).[jt]s"
]
}
}