-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "@kodasoftware/monitoring",
"version": "0.1.0",
"description": "A monitoring library for integrating monitoring and observability platforms and generating logs for monitoring",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16",
"vscode": ">=1.22"
},
"keywords": [
"app",
"kodasoftware",
"monitoring",
"pino",
"logging"
],
"scripts": {
"compile": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"precompile": "rimraf dist",
"prepack": "npm run compile",
"prepublish": "npm run compile"
},
"author": "Koda Software <developer@kodasoftware.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@kodasoftware/typescript": "^0.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": ">=7",
"@typescript-eslint/parser": ">=7",
"eslint": ">=8",
"eslint-config-prettier": ">=9",
"eslint-plugin-jest": ">=27",
"eslint-plugin-node": ">=11",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-simple-import-sort": ">=12",
"prettier": ">=3",
"prettier-eslint": ">=16",
"typescript": ">=5"
},
"dependencies": {
"dd-trace": ">=5",
"pino": "^8.18.0"
},
"peerDependencies": {
"datadog-lambda-js": ">=8"
}
}