@spinajs/telemetry-common 2.0.491 → 2.0.495
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/README.md +22 -22
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.mjs.tsbuildinfo +1 -1
- package/package.json +57 -57
package/package.json
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "2.0.
|
|
3
|
-
"description": "Metric abstraction shared by @spinajs/telemetry and any package that must publish metrics without depending on the HTTP stack",
|
|
4
|
-
"main": "lib/cjs/index.js",
|
|
5
|
-
"module": "lib/mjs/index.js",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./lib/mjs/index.d.ts",
|
|
9
|
-
"import": "./lib/mjs/index.js",
|
|
10
|
-
"require": "./lib/cjs/index.js"
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"type": "module",
|
|
14
|
-
"private": false,
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=16.11"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "npm run clean && npm run compile",
|
|
20
|
-
"compile": "tsc -b tsconfig.mjs.json",
|
|
21
|
-
"compile:cjs": "tsc -b tsconfig.cjs.json",
|
|
22
|
-
"rimraf": "./node_modules/rimraf/bin.js",
|
|
23
|
-
"clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
|
|
24
|
-
"test": "ts-mocha --exit -p tsconfig.json test/**/*.test.ts",
|
|
25
|
-
"coverage": "nyc npm run test",
|
|
26
|
-
"build-docs": "rimraf docs && typedoc --options typedoc.json src/",
|
|
27
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
28
|
-
"lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
|
|
29
|
-
"preversion": "npm run lint",
|
|
30
|
-
"version": "npm run format && git add -A src"
|
|
31
|
-
},
|
|
32
|
-
"author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/log)",
|
|
33
|
-
"license": "MIT",
|
|
34
|
-
"name": "@spinajs/telemetry-common",
|
|
35
|
-
"homepage": "https://github.com/spinajs/main#readme",
|
|
36
|
-
"directories": {
|
|
37
|
-
"lib": "lib",
|
|
38
|
-
"test": "__tests__"
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"lib"
|
|
42
|
-
],
|
|
43
|
-
"publishConfig": {
|
|
44
|
-
"access": "public"
|
|
45
|
-
},
|
|
46
|
-
"repository": {
|
|
47
|
-
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/spinajs/main.git"
|
|
49
|
-
},
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/spinajs/main/issues"
|
|
52
|
-
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@spinajs/di": "
|
|
55
|
-
"prom-client": "^14.2.0"
|
|
56
|
-
}
|
|
57
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.495",
|
|
3
|
+
"description": "Metric abstraction shared by @spinajs/telemetry and any package that must publish metrics without depending on the HTTP stack",
|
|
4
|
+
"main": "lib/cjs/index.js",
|
|
5
|
+
"module": "lib/mjs/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./lib/mjs/index.d.ts",
|
|
9
|
+
"import": "./lib/mjs/index.js",
|
|
10
|
+
"require": "./lib/cjs/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"private": false,
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=16.11"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "npm run clean && npm run compile",
|
|
20
|
+
"compile": "tsc -b tsconfig.mjs.json",
|
|
21
|
+
"compile:cjs": "tsc -b tsconfig.cjs.json",
|
|
22
|
+
"rimraf": "./node_modules/rimraf/bin.js",
|
|
23
|
+
"clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
|
|
24
|
+
"test": "ts-mocha --exit -p tsconfig.json test/**/*.test.ts",
|
|
25
|
+
"coverage": "nyc npm run test",
|
|
26
|
+
"build-docs": "rimraf docs && typedoc --options typedoc.json src/",
|
|
27
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
28
|
+
"lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
|
|
29
|
+
"preversion": "npm run lint",
|
|
30
|
+
"version": "npm run format && git add -A src"
|
|
31
|
+
},
|
|
32
|
+
"author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/log)",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"name": "@spinajs/telemetry-common",
|
|
35
|
+
"homepage": "https://github.com/spinajs/main#readme",
|
|
36
|
+
"directories": {
|
|
37
|
+
"lib": "lib",
|
|
38
|
+
"test": "__tests__"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"lib"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/spinajs/main.git"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/spinajs/main/issues"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@spinajs/di": "2.0.495",
|
|
55
|
+
"prom-client": "^14.2.0"
|
|
56
|
+
}
|
|
57
|
+
}
|