forked from fastify/fastify-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 862 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": "fastify-mongodb",
"version": "0.1.1",
"description": "Fastify MongoDB connection plugin",
"main": "index.js",
"scripts": {
"test": "standard && tap test.js",
"mongo": "docker run -p 27017:27017 mongo:3.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-mongodb.git"
},
"keywords": [
"fastify",
"mongo",
"mongodb",
"database",
"connection"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-mongodb/issues"
},
"homepage": "https://github.com/fastify/fastify-mongodb#readme",
"devDependencies": {
"fastify": "^0.30.2",
"standard": "^10.0.3",
"tap": "^10.7.2"
},
"dependencies": {
"fastify-plugin": "^0.1.1",
"mongodb": "^2.2.33"
}
}