1 | {
|
2 | "name": "diagnostic-channel-publishers",
|
3 | "version": "1.0.8",
|
4 | "main": "dist/src/index.js",
|
5 | "types": "dist/src/index.d.ts",
|
6 | "scripts": {
|
7 | "build": "tsc && node copyTestAssets.js",
|
8 | "lint": "eslint ./ --fix",
|
9 | "clean": "rimraf ./dist",
|
10 | "test": "mocha ./dist/tests/{*.js,**/*.js}",
|
11 | "debug": "mocha --inspect-brk ./dist/tests/{*.js,**/*.js}"
|
12 | },
|
13 | "homepage": "https://github.com/Microsoft/node-diagnostic-channel",
|
14 | "bugs": {
|
15 | "url": "https://github.com/Microsoft/node-diagnostic-channel/issues"
|
16 | },
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "https://github.com/Microsoft/node-diagnostic-channel.git"
|
20 | },
|
21 | "description": "A collection of pre-built module patches that enable existing npm modules to publish diagnostic data",
|
22 | "devDependencies": {
|
23 | "@azure/core-tracing": "1.0.0-preview.13",
|
24 | "@opentelemetry/api": "^1.0.4",
|
25 | "@opentelemetry/instrumentation": "^0.27.0",
|
26 | "@opentelemetry/sdk-trace-base": "^1.0.1",
|
27 | "@types/mocha": "^8.2.2",
|
28 | "@types/node": "^8.5.0",
|
29 | "@types/pg": "7.4.11",
|
30 | "@types/tedious": "^4.0.3",
|
31 | "diagnostic-channel": "file:../diagnostic-channel",
|
32 | "mocha": "^3.2.0",
|
33 | "mongodb": "^3.6.6",
|
34 | "mysql": "^2.16.0",
|
35 | "pg": "^8.6.0",
|
36 | "q": "1.5.0",
|
37 | "redis": "^3.0.2",
|
38 | "rimraf": "^2.6.1",
|
39 | "sinon": "1.17.6",
|
40 | "tedious": "^8.0.1",
|
41 | "typescript": "4.1.2",
|
42 | "winston": "^3.2.1",
|
43 | "zone.js": "^0.8.5"
|
44 | },
|
45 | "peerDependencies": {
|
46 | "diagnostic-channel": "*"
|
47 | },
|
48 | "files": [
|
49 | "dist/src/**/*.d.ts",
|
50 | "dist/src/**/*.js",
|
51 | "LICENSE",
|
52 | "README.md",
|
53 | "package.json"
|
54 | ],
|
55 | "license": "MIT"
|
56 | }
|