-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 880 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
{
"name": "mongodb-pool",
"version": "2.0.3",
"description": "Small wrapper around the native node MongoDB driver to make managing the internal connection pool easier.",
"keywords": [
"mongodb",
"mongodb pool",
"connection pool",
"wrapper",
"mongodb typescript"
],
"main": "./dist/index.js",
"author": "Andrey Kaipov <akaip002@fiu.edu>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/andreykaipov/mongodb-pool.git"
},
"directories": {
"example": "examples"
},
"scripts": {
"clean": "rimraf ./*.{js,js.map,d.ts,tgz} ./mongodb-pool/*.{js,js.map,d.ts,tgz}",
"examples": "tsc --outDir ./mongodb-pool",
"prepare": "tsc"
},
"dependencies": {
"mongodb": "*"
},
"devDependencies": {
"@types/mongodb": "^2.2.6",
"rimraf": "^2.6.1",
"typescript": "^2.3.4"
}
}