Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
70 lines
2.5 KiB
Plaintext
70 lines
2.5 KiB
Plaintext
{
|
|
"name": "@opentelemetry/instrumentation-ioredis",
|
|
"version": "0.59.0",
|
|
"description": "OpenTelemetry instrumentation for `ioredis` database redis client for Redis",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/open-telemetry/opentelemetry-js-contrib.git",
|
|
"directory": "packages/instrumentation-ioredis"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf build/*",
|
|
"compile": "tsc -p .",
|
|
"compile:with-dependencies": "nx run-many -t compile -p @opentelemetry/instrumentation-ioredis",
|
|
"lint:readme": "node ../../scripts/lint-readme.js",
|
|
"prepublishOnly": "npm run compile",
|
|
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
|
|
"test-all-versions": "tav",
|
|
"tdd": "npm run test -- --watch-extensions ts --watch",
|
|
"test:debug": "cross-env RUN_REDIS_TESTS=true mocha --inspect-brk --no-timeouts 'test/**/*.test.ts'",
|
|
"test:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=../../test/test-services.env npm test",
|
|
"test-all-versions:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=../../test/test-services.env npm run test-all-versions",
|
|
"test-services:start": "cd ../.. && npm run test-services:start redis",
|
|
"test-services:stop": "cd ../.. && npm run test-services:stop redis",
|
|
"version:update": "node ../../scripts/version-update.js"
|
|
},
|
|
"keywords": [
|
|
"instrumentation",
|
|
"ioredis",
|
|
"nodejs",
|
|
"opentelemetry",
|
|
"profiling",
|
|
"redis",
|
|
"tracing"
|
|
],
|
|
"author": "OpenTelemetry Authors",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": "^18.19.0 || >=20.6.0"
|
|
},
|
|
"files": [
|
|
"build/src/**/*.js",
|
|
"build/src/**/*.js.map",
|
|
"build/src/**/*.d.ts"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"peerDependencies": {
|
|
"@opentelemetry/api": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@opentelemetry/api": "^1.3.0",
|
|
"@opentelemetry/context-async-hooks": "^2.0.0",
|
|
"@opentelemetry/contrib-test-utils": "^0.58.0",
|
|
"@opentelemetry/sdk-trace-base": "^2.0.0",
|
|
"@opentelemetry/sdk-trace-node": "^2.0.0",
|
|
"@types/ioredis4": "npm:@types/ioredis@4.28.10",
|
|
"ioredis": "5.8.2"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/instrumentation": "^0.211.0",
|
|
"@opentelemetry/redis-common": "^0.38.2",
|
|
"@opentelemetry/semantic-conventions": "^1.33.0"
|
|
},
|
|
"homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/instrumentation-ioredis#readme",
|
|
"gitHead": "7a5f3c0a09b6a2d32c712b2962b95137c906a016"
|
|
}
|