forked from alex-ppg/fastify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 787 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
{
"name": "fastify-mongoose-driver",
"description": "A Fastify plugin to connect to a MongoDB instance via the Mongoose ODM",
"version": "3.2.0",
"main": "index.js",
"scripts": {
"test": "tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-ppg/fastify-mongoose.git"
},
"keywords": [
"fastify",
"api",
"database",
"mongodb",
"mongoose"
],
"author": "Alex Papageorgiou",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alex-ppg/fastify-mongoose/issues"
},
"homepage": "https://github.com/alex-ppg/fastify-mongoose#readme",
"devDependencies": {
"fastify": "^1.14.1",
"tap": "^14.6.5"
},
"dependencies": {
"fastify-plugin": "^1.5.0",
"mongoose": "^5.9.9"
}
}