86 строки
2.8 KiB
JSON
86 строки
2.8 KiB
JSON
{
|
|
"name": "applicationinsights",
|
|
"author": "Microsoft Application Insights Team",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/microsoft/ApplicationInsights-node.js/issues",
|
|
"version": "2.9.5",
|
|
"description": "Microsoft Application Insights module for Node.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/ApplicationInsights-node.js"
|
|
},
|
|
"main": "./out/applicationinsights.js",
|
|
"types": "./out/applicationinsights.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:deps && npm run build:compile",
|
|
"build:deps": "npm update --dev",
|
|
"build:compile": "tsc --project ./tsconfig.json",
|
|
"prepare": "npm run build:compile",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint ./ --fix",
|
|
"pretest": "npm run build",
|
|
"test": "npm run test:ts && npm run test:js",
|
|
"test:debug": "mocha ./out/Tests --inspect-brk --recursive --no-exit",
|
|
"test:ts": "mocha ./out/Tests --recursive --exit",
|
|
"test:js": "mocha ./Tests/js --recursive --exit",
|
|
"functionaltest": "npm run build && npm pack && node --use_strict ./Tests/FunctionalTests/RunFunctionalTests.js",
|
|
"backcompattest": "npm run build && npm pack && node --use_strict ./Tests/BackCompatibility/RunBackCompatTests.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@azure/functions": "^3.5.1",
|
|
"@types/cls-hooked": "^4.3.3",
|
|
"@types/long": "^4.0.2",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^8.0.0",
|
|
"@types/sinon": "2.1.2",
|
|
"applicationinsights-native-metrics": "0.0.7",
|
|
"eslint": "^8.47.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"mocha": "^10.2.0",
|
|
"nock": "^11.9.1",
|
|
"node-mocks-http": "1.2.3",
|
|
"sinon": "1.17.6",
|
|
"typescript": "4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"@azure/core-auth": "^1.5.0",
|
|
"@azure/core-rest-pipeline": "1.10.1",
|
|
"@azure/core-util": "1.2.0",
|
|
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.5",
|
|
"@microsoft/applicationinsights-web-snippet": "1.0.1",
|
|
"@opentelemetry/api": "^1.7.0",
|
|
"@opentelemetry/core": "^1.19.0",
|
|
"@opentelemetry/sdk-trace-base": "^1.19.0",
|
|
"@opentelemetry/semantic-conventions": "^1.19.0",
|
|
"cls-hooked": "^4.2.2",
|
|
"continuation-local-storage": "^3.2.1",
|
|
"diagnostic-channel": "1.1.1",
|
|
"diagnostic-channel-publishers": "1.0.8"
|
|
},
|
|
"peerDependencies": {
|
|
"applicationinsights-native-metrics": "*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"applicationinsights-native-metrics": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|