-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fastify-custom-healthcheck",
"version": "4.0.0",
"description": "Fastify plugin that allows to add custom health checks in your server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "npm run lint && jest lib/**/*.js",
"clean": "rm -rf /coverage",
"lint": "semistandard | snazzy",
"example": "node example/server.js"
},
"keywords": [
"fastify",
"fastify-plugin",
"health",
"healthchecks"
],
"author": "Georgios Kampitakis",
"license": "MIT",
"files": [
"lib/**/*",
"!lib/tests/**/*"
],
"semistandard": {
"env": [
"jest"
]
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"fastify": "^5.2.0",
"fastify-type-provider-zod": "^4.0.2",
"jest": "^29.7.0",
"mongodb": "^4.7.0",
"semistandard": "^17.0.0",
"snazzy": "^9.0.0",
"zod": "^3.24.1"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js$",
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"lib/src/**/*.js",
"!lib/src/**/*/index.js",
"!lib/src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/gkampitakis/fastify-custom-healthcheck/issues"
},
"repository": {
"url": "https://github.com/gkampitakis/fastify-custom-healthcheck"
}
}