-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.55 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "aedes-otel-instrumentation",
"version": "0.2.0",
"description": "OpenTelemetry instrumentation library for Aedes MQTT broker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moscajs/aedes-otel-instrumentation.git"
},
"keywords": [
"mqtt",
"aedes",
"nodejs",
"instrumentation",
"otel",
"opentelemetry"
],
"author": "Edouard Maleix <https://github.com/getlarge>",
"license": "ISC",
"bugs": {
"url": "https://github.com/moscajs/aedes-otel-instrumentation/issues"
},
"homepage": "https://github.com/moscajs/aedes-otel-instrumentation#readme",
"scripts": {
"otel-test": "node --require @esbuild-kit/cjs-loader --test-reporter=spec --test test/*.spec.ts",
"aedes-test": "npm run build && node --require ./test/tracing --test test-aedes/*.js",
"test": "npm run otel-test && npm run aedes-test",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"build": "tsc -p tsconfig.build.json",
"prepare": "husky install",
"postinstall": "patch-package",
"prepack": "npm run build",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test"
]
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "test",
"section": "Test added"
},
{
"type": "refactor",
"section": "Code refactoring"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
}
]
}
}
}
},
"dependencies": {
"@opentelemetry/instrumentation": "^0.41.2",
"@opentelemetry/semantic-conventions": "^1.15.2"
},
"peerDependencies": {
"@opentelemetry/api": "^1.0.0"
},
"devDependencies": {
"@opentelemetry/auto-instrumentations-node": "^0.39.2",
"@opentelemetry/exporter-metrics-otlp-http": "^0.43.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.43.0",
"@opentelemetry/resources": "^1.15.2",
"@opentelemetry/sdk-node": "^0.41.2",
"@opentelemetry/sdk-trace-base": "^1.15.2",
"@release-it/conventional-changelog": "^7.0.2",
"@sinonjs/fake-timers": "^11.1.0",
"@types/node": "^20.5.8",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"aedes": "^0.50.0",
"aedes-packet": "^3.0.0",
"aedes-protocol-decoder": "^2.2.0",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mqtt": "^5.0.4",
"mqtt-connection": "^4.1.0",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"proxyquire": "^2.1.3",
"release-it": "^16.1.5",
"semver": "^7.5.4",
"tap": "^16.3.7",
"tsx": "^3.12.10",
"typescript": "^5.2.2",
"websocket-stream": "^5.5.2"
}
}