-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "@myrotvorets/otel-utils",
"description": "OpenTelemetry-related utilities",
"version": "1.4.0",
"type": "module",
"typings": "./dist/src/index.d.mts",
"exports": "./dist/src/index.mjs",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "mocha test",
"test:coverage": "c8 mocha test",
"lint": "eslint -f gha .",
"prepack": "npm run build"
},
"keywords": [
"opentelemetry",
"opentelemetry-js",
"utility"
],
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"files": [
"./dist/src/*.mjs",
"./dist/src/*.d.mts",
"./dist/src/*.map"
],
"repository": {
"type": "git",
"url": "https://github.com/myrotvorets/otel-utils.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/otel-utils/issues"
},
"homepage": "https://github.com/myrotvorets/otel-utils#readme",
"peerDependencies": {
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/api-logs": "^0.50.0 || ^0.51.0",
"@opentelemetry/core": "^1.23.0"
},
"dependencies": {
"@myrotvorets/create-server": "^3.1.1"
},
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/api-logs": "^0.57.0",
"@opentelemetry/core": "^1.23.0",
"@opentelemetry/sdk-logs": "^0.57.0",
"@opentelemetry/sdk-trace-base": "^1.23.0",
"@types/chai": "^5.0.0",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.6",
"c8": "^10.0.0",
"chai": "^5.1.0",
"chai-subset": "^1.6.0",
"eslint-formatter-gha": "^1.4.3",
"eslint-plugin-mocha": "^10.4.1",
"mocha": "^11.0.0",
"mocha-multi": "^1.1.7",
"mocha-reporter-gha": "^1.1.1",
"mocha-reporter-sonarqube": "^2.0.6",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}