-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.58 KB
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
{
"name": "@kth/appinsights",
"version": "1.0.0",
"description": "Log to Azure Application Insights",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-appinsights.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KTH/kth-node-appinsights/issues"
},
"homepage": "https://github.com/KTH/kth-node-appinsights#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "rm -rf ./coverage && jest --collectCoverage --detectOpenHandles",
"build": "./build.sh",
"build:watch": "tsc --watch",
"prepare": "husky"
},
"dependencies": {
"@azure/monitor-opentelemetry": "^1.19.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.221.0",
"@opentelemetry/instrumentation-http": "^0.221.0",
"@opentelemetry/instrumentation-mongodb": "^0.74.0",
"@opentelemetry/resources": "^2.10.0"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.20.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^15.5.2",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"typescript": "^5.9.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}