This repository was archived by the owner on Oct 7, 2024. It is now read-only.
forked from SkeLLLa/fastify-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.88 KB
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "fastify-metrics",
"version": "10.3.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 . --ext js,jsx,ts,tsx",
"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": "^4.3.0",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/globals": "^29.2.0",
"@microsoft/api-documenter": "^7.19.22",
"@microsoft/api-extractor": "^7.33.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fastify": "^4.9.2",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-sort-json": "0.0.3",
"pretty-quick": "^3.1.3",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"fastify": ">=4"
}
}