UNPKG

2.95 kBJSONView Raw
1{
2 "name": "applicationinsights",
3 "author": "Microsoft Application Insights Team",
4 "license": "MIT",
5 "bugs": "https://github.com/microsoft/ApplicationInsights-node.js/issues",
6 "version": "2.3.5",
7 "description": "Microsoft Application Insights module for Node.js",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/microsoft/ApplicationInsights-node.js"
11 },
12 "main": "./out/applicationinsights.js",
13 "types": "./out/applicationinsights.d.ts",
14 "keywords": [
15 "exception monitoring",
16 "request monitoring",
17 "performance monitoring",
18 "application insights",
19 "microsoft",
20 "azure",
21 "cloud",
22 "tracing",
23 "telemetry",
24 "analytics",
25 "apm"
26 ],
27 "scripts": {
28 "clean": "rm -rf ./out && rm -rf ./node_modules",
29 "build": "npm run build:deps && npm run build:compile",
30 "build:deps": "npm update --dev",
31 "build:compile": "tsc --project ./tsconfig.json",
32 "prepare": "npm run build:compile",
33 "prepublishOnly": "npm run build",
34 "lint": "eslint ./ --fix",
35 "pretest": "npm run build",
36 "test": "npm run test:ts && npm run test:js",
37 "test:debug": "mocha ./out/Tests --inspect-brk --recursive --no-exit",
38 "test:ts": "mocha ./out/Tests --recursive --exit",
39 "test:js": "mocha ./Tests/js --recursive --exit",
40 "functionaltest": "npm run build && npm pack && node --use_strict ./Tests/FunctionalTests/RunFunctionalTests.js",
41 "backcompattest": "npm run build && npm pack && node --use_strict ./Tests/BackCompatibility/RunBackCompatTests.js"
42 },
43 "engines": {
44 "node": ">=8.0.0"
45 },
46 "devDependencies": {
47 "@types/cls-hooked": "^4.3.3",
48 "@types/mocha": "^7.0.2",
49 "@types/node": "^8.0.0",
50 "@types/sinon": "2.1.2",
51 "@typescript-eslint/eslint-plugin": "^5.11.0",
52 "@typescript-eslint/parser": "^5.11.0",
53 "applicationinsights-native-metrics": "0.0.7",
54 "eslint": "^7.29.0",
55 "eslint-config-standard": "^16.0.3",
56 "eslint-plugin-import": "^2.23.4",
57 "eslint-plugin-node": "^11.1.0",
58 "eslint-plugin-promise": "^5.1.0",
59 "eslint-plugin-security": "^1.4.0",
60 "mocha": "^7.1.1",
61 "nock": "^11.9.1",
62 "node-mocks-http": "1.2.3",
63 "sinon": "1.17.6",
64 "typescript": "4.1.2"
65 },
66 "dependencies": {
67 "@azure/core-http": "^2.2.3",
68 "@microsoft/applicationinsights-web-snippet": "^1.0.1",
69 "@opentelemetry/api": "^1.0.4",
70 "@opentelemetry/core": "^1.0.1",
71 "@opentelemetry/sdk-trace-base": "^1.0.1",
72 "@opentelemetry/semantic-conventions": "^1.0.1",
73 "cls-hooked": "^4.2.2",
74 "continuation-local-storage": "^3.2.1",
75 "diagnostic-channel": "1.1.0",
76 "diagnostic-channel-publishers": "1.0.5"
77 },
78 "peerDependencies": {
79 "applicationinsights-native-metrics": "*"
80 },
81 "peerDependenciesMeta": {
82 "applicationinsights-native-metrics": {
83 "optional": true
84 }
85 }
86}