-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "@promster/metrics",
"version": "14.0.0",
"description": "Metrics utilities used by all other server integrations",
"main": "dist/promster-metrics.cjs.js",
"typings": "dist/promster-metrics.cjs.d.ts",
"types": "dist/promster-metrics.cjs.d.ts",
"files": [
"readme.md",
"package.json",
"LICENSE",
"dist/**",
"modules/**"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/tdeekens/promster.git",
"directory": "packages/metrics"
},
"author": "Tobias Deekens <nerd@tdeekens.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tdeekens/promster/issues"
},
"homepage": "https://github.com/tdeekens/promster#readme",
"keywords": [
"metrics",
"continousdelivery",
"prometheus"
],
"dependencies": {
"@promster/types": "workspace:*",
"lodash.memoize": "4.1.2",
"lodash.once": "4.1.1",
"merge-options": "3.0.4",
"prometheus-gc-stats": "1.1.0",
"tslib": "2.6.3",
"url-value-parser": "2.2.0"
},
"devDependencies": {
"@types/lodash.once": "4.1.9",
"@types/node": "20.16.13",
"prom-client": "15.1.3",
"typescript": "5.6.2"
},
"peerDependencies": {
"prom-client": "13.x.x || 14.x || 15.x"
}
}