-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "gcp-nodejs-correlate-logs",
"version": "1.0.0",
"description": "Helper module for nodejs applications to correlate logs in Google Cloud Platform",
"main": "lib/index.js",
"scripts": {
"build": "npm run lint && ./node_modules/.bin/babel src -d lib",
"lint": "eslint ./src --fix"
},
"keywords": [
"gcp",
"logs",
"nodejs",
"grouping logs",
"correlate logs"
],
"license": "ISC",
"dependencies": {
"@google-cloud/logging-bunyan": "^5.0.1",
"bunyan": "^1.8.15",
"cls-hooked": "^4.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0"
},
"author": {
"name": "Balachander",
"url": "https://github.com/Bala-raj"
},
"repository": {
"type": "git",
"url": "https://github.com/Bala-raj/gcp-nodejs-correlate-logs.git"
},
"bugs": {
"url": "https://github.com/Bala-raj/gcp-nodejs-correlate-logs/issues"
}
}