-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
33 lines (33 loc) · 1.32 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
{
"name": "node-diagnostic-channel",
"version": "0.0.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.",
"main": "Gruntfile.js",
"scripts": {
"postinstall": "grunt init",
"build": "grunt build",
"lint": "eslint ./ --fix",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.1",
"@types/node": "^8.0.0"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-plugin-node": "^11.1.0",
"grunt": "^1.6.1",
"typescript": "4.1.2"
},
"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"
}