-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.26 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
{
"name": "nestjs-metrics-reporter",
"version": "1.0.0",
"description": "A global static Prometheus metrics reporter for NestJS applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "jest debug --runInBand --detectOpenHandles",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"nestjs",
"prometheus",
"metrics",
"monitoring",
"global",
"reporter",
"prometheus-client",
"prom-client"
],
"author": {
"name": "Netanel Avraham",
"url": "https://github.com/netanelavr"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/netanelavr/nestjs-metrics-reporter.git"
},
"bugs": {
"url": "https://github.com/netanelavr/nestjs-metrics-reporter/issues"
},
"homepage": "https://github.com/netanelavr/nestjs-metrics-reporter#readme",
"dependencies": {
"prom-client": "^14.0.0"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/swagger": "^7.4.0 <8.0.0 || ^11.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/swagger": "^7.4.0",
"@nestjs/testing": "^10.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "5.3"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}