-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
91 lines (91 loc) · 3.27 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
{
"name": "applicationinsights",
"author": "Microsoft Application Insights Team",
"license": "MIT",
"bugs": "https://github.com/microsoft/ApplicationInsights-node.js/issues",
"version": "3.4.0",
"description": "Microsoft Application Insights module for Node.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/ApplicationInsights-node.js"
},
"main": "./out/src/index.js",
"types": "./out/src/index.d.ts",
"keywords": [
"exception monitoring",
"request monitoring",
"performance monitoring",
"application insights",
"microsoft",
"azure",
"cloud",
"tracing",
"telemetry",
"analytics",
"apm"
],
"scripts": {
"clean": "rm -rf ./out && rm -rf ./node_modules",
"build": "npm run build:compile",
"build:deps": "npm update --dev",
"build:compile": "tsc --project ./tsconfig.json",
"format": "prettier --write --config .prettierrc.json --ignore-path .prettierignore \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "npm run build:compile",
"prepublishOnly": "npm run build",
"lint": "eslint ./ --fix",
"pretest": "npm run build",
"test": "nyc mocha ./out/test --recursive",
"test:debug": "nyc mocha ./out/test --inspect-brk --recursive",
"test:unit": "nyc mocha ./out/test/unitTests --recursive",
"test:e2e": "nyc mocha ./out/test/endToEnd --recursive",
"functionaltest": "npm run build && npm pack && node --use_strict ./test/functionalTests/runFunctionalTests.js",
"backcompattest": "npm run build && npm pack && node --use_strict ./test/backCompatibility/runBackCompatTests.js"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/long": "^4.0.2",
"@types/microsoft__typescript-etw": "^0.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^18.0.0",
"@types/semver": "7.3.9",
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"prettier": "^2.5.1",
"sinon": "^9.0.2",
"typescript": "~4.8.0"
},
"dependencies": {
"@azure/core-auth": "^1.3.0",
"@azure/core-client": "^1.0.0",
"@azure/core-rest-pipeline": "^1.9.2",
"@azure/functions": "^4.6.0",
"@azure/functions-old": "npm:@azure/functions@3.5.1",
"@azure/identity": "^4.2.1",
"@azure/monitor-opentelemetry": "^1.8.0",
"@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.27",
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.5",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.53.0",
"@opentelemetry/core": "^1.26.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.53.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.53.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.53.0",
"@opentelemetry/otlp-exporter-base": "^0.53.0",
"@opentelemetry/resources": "^1.26.0",
"@opentelemetry/sdk-logs": "^0.53.0",
"@opentelemetry/sdk-metrics": "^1.26.0",
"@opentelemetry/sdk-trace-base": "^1.26.0",
"@opentelemetry/sdk-trace-node": "^1.26.0",
"@opentelemetry/semantic-conventions": "^1.26.0",
"diagnostic-channel": "1.1.1",
"diagnostic-channel-publishers": "1.0.8"
}
}