forked from googleapis/nodejs-logging-bunyan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.2 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
84
85
{
"name": "@google-cloud/logging-bunyan",
"description": "Cloud Logging stream for Bunyan",
"version": "3.3.1",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=10"
},
"repository": "googleapis/nodejs-logging-bunyan",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google logging",
"logging",
"stackdriver logging",
"stackdriver",
"bunyan stream",
"winston"
],
"scripts": {
"predocs": "npm run compile",
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check",
"presamples-test": "npm run compile",
"presystem-test": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha build/system-test --timeout 600000",
"test": "c8 mocha --recursive build/test",
"clean": "gts clean",
"compile": "tsc -p .",
"postcompile": "cpy ./src/types/* ./build/src/types",
"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": "^9.8.0",
"google-auth-library": "^7.0.0"
},
"devDependencies": {
"@google-cloud/common": "^3.0.0",
"@types/bunyan": "^1.8.4",
"@types/express": "^4.16.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/proxyquire": "^1.3.28",
"@types/uuid": "^8.0.0",
"bunyan": "^1.8.12",
"c8": "^7.0.0",
"codecov": "^3.0.2",
"cpy-cli": "^3.0.0",
"delay": "^5.0.0",
"express": "^4.16.3",
"gts": "^2.0.0",
"jsdoc": "^3.6.2",
"jsdoc-fresh": "^1.0.1",
"jsdoc-region-tag": "^1.0.2",
"linkinator": "^2.0.0",
"mocha": "^8.0.0",
"post-install-check": "0.0.1",
"proxyquire": "^2.0.1",
"typescript": "^3.8.3",
"uuid": "^8.0.0"
},
"peerDependencies": {
"bunyan": "*"
}
}