-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.91 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "stackdriver-logging-winston-koa",
"description": "Koa middleware for Winston transport to Cloud Logging",
"version": "0.0.0-development",
"license": "Apache-2.0",
"author": "Tobias Binna",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/toolsplus/stackdriver-logging-winston-koa"
},
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map"
],
"scripts": {
"commit": "git-cz",
"build": "tsc -p .",
"test": "nyc mocha --recursive build/test",
"system-test": "mocha build/system-test --timeout 600000",
"coverage": "nyc report --reporter=json",
"semantic-release": "semantic-release"
},
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google logging",
"logging",
"stackdriver logging",
"stackdriver",
"winston transport",
"winston",
"koa"
],
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/mocha": "^9.1.1",
"@types/node": "^22.13.10",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.48.2",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.32.0",
"gts": "^5.3.1",
"koa": "^2.7.0",
"mocha": "^9.2.2",
"nyc": "^15.0.1",
"prettier": "^2.5.1",
"proxyquire": "^2.1.3",
"semantic-release": "^17.0.7",
"typescript": "^5.8.2",
"uuid": "^11.1.0",
"winston": "^3.2.1"
},
"dependencies": {
"@google-cloud/logging": "^11.2.0",
"@google-cloud/logging-winston": "^6.0.0",
"google-auth-library": "^9.15.1",
"winston-transport": "^4.3.0"
},
"peerDependencies": {
"winston": ">=3.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}