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
81 lines
2.6 KiB
Plaintext
81 lines
2.6 KiB
Plaintext
{
|
|
"name": "@opentelemetry/instrumentation-http",
|
|
"version": "0.211.0",
|
|
"description": "OpenTelemetry instrumentation for `node:http` and `node:https` http client and server modules",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"repository": "open-telemetry/opentelemetry-js",
|
|
"scripts": {
|
|
"prepublishOnly": "npm run compile",
|
|
"compile": "tsc --build",
|
|
"clean": "tsc --build --clean",
|
|
"test:cjs": "nyc mocha test/**/*.test.ts",
|
|
"test:esm": "nyc node --experimental-loader=@opentelemetry/instrumentation/hook.mjs ../../../node_modules/mocha/bin/mocha 'test/**/*.test.mjs'",
|
|
"test": "npm run test:cjs && npm run test:esm",
|
|
"tdd": "npm run test -- --watch-extensions ts --watch",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"version": "node ../../../scripts/version-update.js",
|
|
"watch": "tsc --build --watch",
|
|
"prewatch": "node ../../../scripts/version-update.js",
|
|
"peer-api-check": "node ../../../scripts/peer-api-check.js",
|
|
"align-api-deps": "node ../../../scripts/align-api-deps.js",
|
|
"maint:regenerate-test-certs": "cd test/fixtures && ./regenerate.sh"
|
|
},
|
|
"keywords": [
|
|
"opentelemetry",
|
|
"http",
|
|
"nodejs",
|
|
"tracing",
|
|
"profiling",
|
|
"instrumentation"
|
|
],
|
|
"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",
|
|
"doc",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@opentelemetry/api": "1.9.0",
|
|
"@opentelemetry/context-async-hooks": "2.5.0",
|
|
"@opentelemetry/sdk-metrics": "2.5.0",
|
|
"@opentelemetry/sdk-trace-base": "2.5.0",
|
|
"@opentelemetry/sdk-trace-node": "2.5.0",
|
|
"@types/mocha": "10.0.10",
|
|
"@types/node": "18.19.130",
|
|
"@types/request-promise-native": "1.0.21",
|
|
"@types/sinon": "17.0.4",
|
|
"@types/superagent": "8.1.9",
|
|
"axios": "1.12.2",
|
|
"mocha": "11.7.5",
|
|
"nock": "13.5.6",
|
|
"nyc": "17.1.0",
|
|
"sinon": "18.0.1",
|
|
"superagent": "10.1.1",
|
|
"typescript": "5.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@opentelemetry/api": "^1.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/core": "2.5.0",
|
|
"@opentelemetry/instrumentation": "0.211.0",
|
|
"@opentelemetry/semantic-conventions": "^1.29.0",
|
|
"forwarded-parse": "2.1.2"
|
|
},
|
|
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-http",
|
|
"sideEffects": false,
|
|
"gitHead": "38924cbff2a6e924ce8a2a227d3a72de52fbcd35"
|
|
}
|