-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 932 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 932 Bytes
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
{
"name": "google-logging-samples",
"version": "0.0.1",
"description": "Samples for debug logger",
"main": "index.js",
"scripts": {
"test": "c8 mocha build/system-test",
"pretest": "npm run compile",
"compile": "tsc -p .",
"typeless": "npx typeless-sample-bot --outputpath javascript --targets typescript --recursive",
"posttypeless": "npx eslint --fix javascript"
},
"files": [
"javascript/*.js",
"typescript/*.ts"
],
"private": true,
"author": "Google LLC",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/googleapis/gax-nodejs.git",
"directory": "logging-utils/samples"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"google-logging-utils": "^1.1.3"
},
"devDependencies": {
"@google-cloud/typeless-sample-bot": "^2.1.0",
"@types/node": "^25.6.0",
"gts": "^5.0.0",
"mocha": "^10.0.0"
}
}