forked from fastify/fastify-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 KB
/
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
44
45
46
47
48
{
"name": "@fastify/mongodb",
"version": "8.0.0",
"description": "Fastify MongoDB connection plugin",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"coverage": "npm run unit -- --cov --coverage-report=html",
"lint": "standard",
"lint:fix": "standard --fix",
"mongo": "docker run --rm -d -p 27017:27017 mongo:5.0.0",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-mongodb.git"
},
"keywords": [
"fastify",
"mongo",
"mongodb",
"database",
"connection"
],
"author": "Tomas Della Vedova - @delvedor (https://delvedor.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-mongodb/issues"
},
"homepage": "https://github.com/fastify/fastify-mongodb#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.6.2",
"fastify": "^4.23.2",
"standard": "^17.1.0",
"tap": "^16.1.0",
"tsd": "^0.29.0"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"mongodb": "^6.1.0"
},
"publishConfig": {
"access": "public"
}
}