-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "opentelemetry-operations-js",
"version": "0.4.0",
"description": "OpenTelemetry is a distributed tracing and stats collection framework.",
"scripts": {
"clean": "lerna run clean",
"precompile": "tsc --version",
"compile": "lerna run compile",
"test": "lerna run test",
"lint": "lerna run lint",
"fix": "lerna run fix",
"create-release-tags": "create-release-tags.js",
"update-snapshot-tests": "lerna run update-snapshot-tests"
},
"repository": "https://github.com/GoogleCloudPlatform/opentelemetry-operations-js",
"keywords": [
"opentelemetry",
"nodejs",
"tracing",
"monitoring",
"logs",
"google-cloud-trace",
"google-cloud-monitoring",
"google-cloud-logs"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"devDependencies": {
"lerna": "7.4.2"
},
"workspaces": [
"packages/*",
"samples/*",
"!samples/instrumentation-quickstart",
"e2e-test-server",
"scripts"
],
"overrides": {
"nx": "16.7.2",
"@nx/devkit": "16.7.2"
}
}