forked from googleapis/cloud-trace-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.21 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@google-cloud/trace-agent",
"version": "8.0.0",
"description": "Node.js Support for StackDriver Trace",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "googleapis/cloud-trace-nodejs",
"scripts": {
"pretest": "npm run compile",
"test": "c8 npm run script init-test-fixtures run-unit-tests",
"non-interference": "c8 mocha test/non-interference",
"presystem-test": "npm run compile",
"system-test": "c8 mocha build/system-test --timeout 120000",
"lint": "gts check",
"clean": "gts clean",
"precompile": "npm run script get-plugin-types",
"compile": "tsc -p ./tsconfig.full.json && tsc -p ./tsconfig.json",
"fix": "gts fix",
"prepare": "gts clean && npm run compile",
"script": "ts-node -P ./scripts/tsconfig.json ./scripts",
"license-check": "jsgl --local .",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs/",
"docs": "compodoc src/",
"presamples-test": "npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"prelint": "cd samples; npm link ../; npm i"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"!build/src/plugins/**/*.d.ts",
"!build/src/plugins/types",
"doc",
"!doc/images",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [
"google",
"tracing",
"profiling"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@google-cloud/datastore": "^8.0.0",
"@grpc/proto-loader": "^0.7.0",
"@types/builtin-modules": "^2.0.0",
"@types/console-log-level": "^1.4.0",
"@types/continuation-local-storage": "^3.2.1",
"@types/extend": "^3.0.0",
"@types/glob": "^8.1.0",
"@types/is": "0.0.25",
"@types/knex": "^0.15.1",
"@types/methods": "^1.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^20.4.9",
"@types/node-fetch": "^2.5.0",
"@types/once": "^1.4.0",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.0.0",
"@types/shimmer": "^1.0.1",
"@types/source-map-support": "0.5.1",
"@types/tmp": "0.2.6",
"@types/uuid": "^9.0.0",
"axios": "^1.0.0",
"c8": "^8.0.1",
"cpy": "^8.0.0",
"express": "^4.15.2",
"gaxios": "^6.0.0",
"glob": "^8.0.0",
"grpc": "1.24.11",
"gts": "^5.0.0",
"js-green-licenses": "^4.0.0",
"linkinator": "^2.0.0",
"mocha": "^9.2.2",
"nock": "^13.0.0",
"once": "^1.4.0",
"retry-axios": "^2.0.0",
"teeny-request": "^9.0.0",
"timekeeper": "^2.0.0",
"tmp": "0.2.3",
"ts-node": "^10.7.0",
"typescript": "5.1.6"
},
"dependencies": {
"@google-cloud/common": "^5.0.0",
"@opencensus/propagation-stackdriver": "0.1.0",
"builtin-modules": "^3.0.0",
"console-log-level": "^1.4.0",
"continuation-local-storage": "^3.2.1",
"extend": "^3.0.2",
"gcp-metadata": "^6.0.0",
"google-auth-library": "^9.0.0",
"hex2dec": "^1.0.1",
"is": "^3.2.0",
"methods": "^1.1.1",
"require-in-the-middle": "^7.0.0",
"semver": "^7.0.0",
"shimmer": "^1.2.0",
"source-map-support": "^0.5.16",
"uuid": "^9.0.0"
}
}