-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
99 lines (99 loc) · 3.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://json.schemastore.org/package.json",
"name": "fastify-metrics",
"version": "12.1.0",
"description": "Prometheus metrics exporter for Fastify",
"keywords": [
"fastify-plugin",
"metrics",
"prometheus",
"fastify",
"plugin"
],
"homepage": "https://github.com/SkeLLLa/fastify-metrics/blob/master/README.md",
"bugs": {
"url": "https://github.com/SkeLLLa/fastify-metrics/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SkeLLLa/fastify-metrics.git"
},
"license": "MIT",
"author": "m03geek",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"doc": "docs",
"example": "examples",
"test": "src/__tests__"
},
"scripts": {
"build": "pnpm run build:node && pnpm run build:docs",
"build:docs": "api-extractor run -l && api-documenter markdown -i ./temp -o ./docs/api && pretty-quick",
"build:node": "tsc -p tsconfig.build.json",
"example:ts": "ts-node examples/example.ts",
"lint": "pnpm run lint:types && pnpm run lint:codestyle && pnpm run lint:packages",
"lint:codestyle": "eslint",
"lint:packages": "pnpm audit --prod --audit-level=high",
"lint:types": "tsc -p tsconfig.json",
"release": "semantic-release",
"test": "npm run lint && pnpm run test:unit",
"test:unit": "jest --passWithNoTests"
},
"dependencies": {
"fastify-plugin": "^5.0.0",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@jest/globals": "^29.7.0",
"@microsoft/api-documenter": "^7.25.14",
"@microsoft/api-extractor": "^7.47.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.4",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"fastify": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sort-json": "^4.0.0",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"peerDependencies": {
"fastify": ">=5"
},
"volta": {
"node": "22.8.0",
"pnpm": "9.9.0"
}
}