forked from aspecto-io/opentelemetry-ext-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 KB
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
{
"name": "opentelemetry-instrumentation-node-cache",
"version": "0.41.0",
"description": "open telemetry instrumentation for the `node-cache`",
"keywords": [
"node-cache",
"opentelemetry"
],
"author": {
"name": "Aspecto",
"email": "support@aspecto.io",
"url": "https://aspecto.io"
},
"homepage": "https://github.com/aspecto-io/opentelemetry-ext-js",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/aspecto-io/opentelemetry-ext-js.git"
},
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "mocha --require @opentelemetry/contrib-test-utils",
"test:jaeger": "OTEL_EXPORTER_JAEGER_AGENT_HOST=localhost mocha --require @opentelemetry/contrib-test-utils",
"test:ci": "tav",
"watch": "tsc -w",
"version:update": "node ../../scripts/version-update.js",
"version": "yarn run version:update"
},
"bugs": {
"url": "https://github.com/aspecto-io/opentelemetry-ext-js/issues"
},
"peerDependencies": {
"@opentelemetry/api": "^1.8.0"
},
"dependencies": {
"@opentelemetry/contrib-test-utils": "^0.39.0",
"@opentelemetry/core": "^1.24.1",
"@opentelemetry/instrumentation": "^0.51.1",
"@opentelemetry/semantic-conventions": "^1.24.1"
},
"devDependencies": {
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/contrib-test-utils": "^0.39.0",
"@opentelemetry/sdk-trace-base": "^1.24.1",
"@types/mocha": "^8.2.2",
"aspecto-opentelemetry-instrumentation-mocha": "0.0.9-alpha.0",
"expect": "^26.6.2",
"mocha": "^8.4.0",
"node-cache": "^5.1.2",
"test-all-versions": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/**/*.spec.ts",
"require": [
"ts-node/register",
"aspecto-opentelemetry-instrumentation-mocha"
]
}
}