-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.82 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.82 KB
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
{
"name": "node-diagnostic-channel",
"version": "1.2.0",
"description": "**diagnostic-channel** provides a shared channel for handling instrumentation\r and diagnostic messages in Node.js apps. Instrumentation patchers and module\r authors can publish messages to this channel by calling `channel.publish(...)`,\r and APM providers and other tools can subscribe to those messages by calling\r `channel.subscribe(...)`. Subscribers can transform the original generic message\r as needed in their handlers and relay the message on to storage and monitoring\r systems.",
"workspaces": [
"src/diagnostic-channel",
"src/diagnostic-channel-publishers",
"src/subs/*",
"sample"
],
"main": "Gruntfile.js",
"scripts": {
"build": "grunt build",
"lint": "eslint ./ --fix",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"@types/node": "18.15.13",
"applicationinsights": "*",
"zone.js": "~0.14.6"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-plugin-node": "^11.1.0",
"grunt": "^1.6.1",
"typescript": "4.9.5",
"rimraf": "^5.0.0",
"mocha": "^10.0.0",
"@types/mocha": "^10.0.0",
"@types/sinon": "^17.0.3",
"sinon": "^18.0.0",
"q": "^1.5.1",
"@azure/core-tracing": "^1.1.2",
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.5",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/instrumentation": "^0.46.0",
"@opentelemetry/sdk-trace-base": "^1.18.1"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/node-diagnostic-channel.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/node-diagnostic-channel/issues"
},
"homepage": "https://github.com/Microsoft/node-diagnostic-channel#readme"
}