-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
83 lines (83 loc) · 2.15 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
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
80
81
82
83
{
"name": "@google-cloud/logging-winston",
"description": "Cloud Logging transport for Winston",
"version": "6.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=14.0.0"
},
"repository": "googleapis/nodejs-logging-winston",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map",
"CODE_OF_CONDUCT.md"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google logging",
"logging",
"cloud logging",
"cloud",
"winston transport",
"winston"
],
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check",
"presamples-test": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"presystem-test": "npm run pretest",
"system-test": "mocha build/system-test --timeout 600000",
"test": "c8 mocha --recursive build/test",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/logging": "^11.0.0",
"google-auth-library": "^9.0.0",
"lodash.mapvalues": "^4.6.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@google-cloud/common": "^5.0.0",
"@types/lodash.mapvalues": "^4.6.6",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"@types/proxyquire": "^1.3.28",
"@types/triple-beam": "^1.3.0",
"@types/uuid": "^9.0.0",
"c8": "^9.0.0",
"codecov": "^3.5.0",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"linkinator": "^3.0.0",
"mocha": "^9.2.2",
"post-install-check": "0.0.1",
"proxyquire": "^2.1.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"winston": "^3.2.1"
},
"peerDependencies": {
"winston": ">=3.2.1"
}
}