-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
94 lines (94 loc) · 2.54 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
86
87
88
89
90
91
92
93
94
{
"name": "@google-cloud/logging-bunyan",
"description": "Stackdriver Logging stream for Bunyan",
"version": "0.9.4",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.0.0"
},
"repository": "googleapis/nodejs-logging-bunyan",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/src",
"!build/src/**/*.map",
"AUTHORS",
"CONTRIBUTORS",
"LICENSE",
"CODE_OF_CONDUCT.md",
"README.md"
],
"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": {
"docs": "jsdoc -c .jsdoc.js",
"generate-scaffolding": "repo-tools generate all --except lib_readme",
"lint": "eslint samples/",
"presamples-test": "npm run compile",
"prettier": "prettier --write samples/*.js samples/*/*.js",
"presystem-test": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "mocha build/system-test --timeout 600000",
"test": "nyc mocha --recursive build/test",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"postcompile": "cpy ./src/types/* ./build/src/types",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"codecov": "nyc report --reporter=json && codecov -f .coverage/*.json"
},
"dependencies": {
"@google-cloud/logging": "^4.1.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"@types/bunyan": "^1.8.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.3",
"@types/node": "^10.3.6",
"@types/proxyquire": "^1.3.28",
"bunyan": "^1.8.12",
"codecov": "^3.0.2",
"cpy-cli": "^2.0.0",
"delay": "^4.0.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"express": "^4.16.3",
"gts": "^0.9.0",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"post-install-check": "0.0.1",
"power-assert": "^1.6.0",
"prettier": "^1.13.6",
"proxyquire": "^2.0.1",
"request": "^2.88.0",
"source-map-support": "^0.5.6",
"typescript": "~3.1.0"
},
"peerDependencies": {
"bunyan": "*"
}
}