nest-monitor 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -0
- package/dist/index.js +1 -0
- package/package.json +61 -0
package/dist/index.d.ts
ADDED
|
File without changes
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nest-monitor",
|
|
3
|
+
"type": "commonjs",
|
|
4
|
+
"version": "0.2.8",
|
|
5
|
+
"description": "Библиотека для сбора метрик с высоконагруженного приложения на Nest.js",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsc",
|
|
10
|
+
"dev": "tsc --watch",
|
|
11
|
+
"prepublishOnly": "npm run build",
|
|
12
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
13
|
+
"lint:fix": "eslint \"src/**/*.ts\" --fix",
|
|
14
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
15
|
+
"hook:path": "git config core.hooksPath .hooks || echo 'Not in a git repo'",
|
|
16
|
+
"version:update": "node scripts/version-updater.js",
|
|
17
|
+
"version:major": "node scripts/version-updater.js major",
|
|
18
|
+
"version:minor": "node scripts/version-updater.js minor",
|
|
19
|
+
"version:patch": "node scripts/version-updater.js patch"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"nestjs",
|
|
23
|
+
"performance",
|
|
24
|
+
"monitoring",
|
|
25
|
+
"metrics"
|
|
26
|
+
],
|
|
27
|
+
"author": "Семиков Алексей Александрович",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/aasemikov/nest-metrics"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/aasemikov/nest-metrics",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/aasemikov/nest-metrics/issues"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@eslint/js": "^9.37.0",
|
|
39
|
+
"@types/commander": "^2.12.0",
|
|
40
|
+
"@types/eslint__js": "^8.42.3",
|
|
41
|
+
"@types/node": "^20.10.0",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
43
|
+
"@typescript-eslint/parser": "^8.46.0",
|
|
44
|
+
"eslint": "^9.37.0",
|
|
45
|
+
"eslint-config-prettier": "^10.1.8",
|
|
46
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
47
|
+
"prettier": "^3.6.2",
|
|
48
|
+
"typescript": "^5.3.3",
|
|
49
|
+
"typescript-eslint": "^8.46.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@nestjs/common": "^9.0.0 || ^10.0.0",
|
|
53
|
+
"@nestjs/core": "^9.0.0 || ^10.0.0",
|
|
54
|
+
"rxjs": "^7.8.0 || ^8.0.0"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"dist",
|
|
58
|
+
"LICENSE",
|
|
59
|
+
"README.md"
|
|
60
|
+
]
|
|
61
|
+
}
|