This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "opentelemetry-resource-detector-service",
"version": "0.30.0",
"description": "open telemetry resource detector for service",
"keywords": [
"opentelemetry"
],
"homepage": "https://github.com/aspecto-io/opentelemetry-ext-js",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"dist/src/**/*.js.map",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/aspecto-io/opentelemetry-ext-js.git"
},
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "mocha",
"test:jaeger": "OTEL_EXPORTER_JAEGER_AGENT_HOST=localhost mocha",
"watch": "tsc -w",
"version:update": "node ../../../scripts/version-update.js",
"test:ci": "yarn test",
"version": "yarn run version:update"
},
"bugs": {
"url": "https://github.com/aspecto-io/opentelemetry-ext-js/issues"
},
"peerDependencies": {
"@opentelemetry/api": "^1.8.0"
},
"dependencies": {
"@opentelemetry/resources": "~1.24.1",
"@opentelemetry/semantic-conventions": "^1.24.1",
"opentelemetry-resource-detector-sync-api": "^0.30.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@opentelemetry/api": "^1.8.0",
"@types/mocha": "^8.2.2",
"aspecto-opentelemetry-instrumentation-mocha": "0.0.9-alpha.0",
"expect": "^26.6.2",
"mocha": "^8.4.0",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/**/*.spec.ts",
"require": [
"ts-node/register",
"aspecto-opentelemetry-instrumentation-mocha"
]
}
}