-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.5 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
{
"name": "@nifty-lil-tricks/monitoring",
"description": "A selection of useful utilities (or nifty li'l tricks!) for all things monitoring and OpenTelemetry",
"version": "0.3.1",
"author": "Jonny Green <hello@jonnydgreen.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nifty-lil-tricks/monitoring.git"
},
"bugs": {
"url": "https://github.com/nifty-lil-tricks/monitoring/issues"
},
"homepage": "https://github.com/nifty-lil-tricks/monitoring",
"keywords": [
"monitoring",
"opentelemetry",
"nodejs",
"tracing"
],
"main": "build/src/index.js",
"module": "build/esm/src/index.js",
"types": "build/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "tsc --build --clean tsconfig.json tsconfig.esm.json tsconfig.esnext.json tsconfig.legacy.json",
"build": "tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json tsconfig.legacy.json",
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json tsconfig.esnext.json tsconfig.legacy.json",
"test": "tap run --typecheck test/**/*.test.ts",
"test:legacy": "tap run --typecheck --tsconfig tsconfig.legacy.json test/**/*.test.ts",
"test:ci": "tap run --typecheck --coverage-report=lcov test/**/*.test.ts",
"test:ci:legacy": "tap run --typecheck --tsconfig tsconfig.legacy.json test/**/*.test.ts",
"test:watch": "tap run --typecheck -w test/**/*.test.ts",
"docs": "typedoc && git add docs/api",
"docs:deploy": "gh-pages --dist docs/out",
"docs:test": "linkinator docs/out --silent && linkinator docs/*.md *.md --markdown --silent",
"start:collector": "docker run --name jaeger -e COLLECTOR_ZIPKIN_HOST_PORT=:9411 -e COLLECTOR_OTLP_ENABLED=true -p 6831:6831/udp -p 6832:6832/udp -p 5778:5778 -p 16686:16686 -p 4317:4317 -p 4318:4318 -p 14250:14250 -p 14268:14268 -p 14269:14269 -p 9411:9411 jaegertracing/all-in-one:1.44",
"example:basic": "ts-node examples/basic.ts",
"example:nestjs": "npx nest start -p tsconfig.nestjs.json -c examples/nest-cli.json",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format:check": "biome format .",
"format": "biome format . --write",
"pre-commit": "npm run lint && deno task lint && npm run format:check && npm run build && npm run test && npm run docs"
},
"dependencies": {
"@opentelemetry/api": "^1.7.0"
},
"files": [
"docs/**/*",
"src/**/*.ts",
"test/**/*.ts",
"examples/**/*.ts",
"build/esm/**/*.js",
"build/esm/**/*.js.map",
"build/esm/**/*.d.ts",
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"LICENSE",
"*.md"
],
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@nestjs/cli": "^10.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.45.1",
"@opentelemetry/instrumentation": "^0.45.1",
"@opentelemetry/instrumentation-nestjs-core": "^0.33.3",
"@opentelemetry/resources": "^1.18.1",
"@opentelemetry/sdk-node": "^0.45.1",
"@opentelemetry/sdk-trace-base": "^1.18.1",
"@opentelemetry/semantic-conventions": "^1.18.1",
"@types/node": "^20.9.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"tap": "^18.6.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=18"
}
}