90 lines
2.6 KiB
JSON
90 lines
2.6 KiB
JSON
{
|
|
"name": "@tachybase/opentelemetry-instrumentation-http",
|
|
"version": "0.1.1",
|
|
"description": "OpenTelemetry instrumentation for `node:http` and `node:https` http client and server modules for TachyBase",
|
|
"author": "TachyBase Team",
|
|
"homepage": "https://git.daoyoucloud.com/tachybase/opentelemetry-auto-instrumentations/plugins/node/opentelemetry-instrumentation-http",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"exports": {
|
|
".": "./build/src/index.js",
|
|
"./register": "./build/src/register.js"
|
|
},
|
|
"repository": "https://git.daoyoucloud.com/tachybase/opentelemetry-auto-instrumentations",
|
|
"scripts": {
|
|
"clean": "tsc --build --clean",
|
|
"compile": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"precompile": "cross-var lerna run version --include-dependencies",
|
|
"prewatch": "npm run precompile",
|
|
"prepublishOnly": "npm run compile",
|
|
"tdd": "npm run test -- --watch-extensions ts --watch",
|
|
"test": "npm run test:cjs && npm run test:esm",
|
|
"watch": "tsc --build --watch"
|
|
},
|
|
"keywords": [
|
|
"tachybase",
|
|
"opentelemetry",
|
|
"http",
|
|
"nodejs",
|
|
"tracing",
|
|
"profiling",
|
|
"instrumentation"
|
|
],
|
|
"bugs": {
|
|
"url": "https://git.daoyoucloud.com/tachybase/opentelemetry-auto-instrumentations/issues"
|
|
},
|
|
"peerDependencies": {
|
|
"@opentelemetry/api": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@opentelemetry/api": "1.9.0",
|
|
"@opentelemetry/context-async-hooks": "1.25.1",
|
|
"@opentelemetry/sdk-metrics": "1.25.1",
|
|
"@opentelemetry/sdk-trace-base": "1.25.1",
|
|
"@opentelemetry/sdk-trace-node": "1.25.1",
|
|
"@types/mocha": "10.0.7",
|
|
"@types/node": "18.6.5",
|
|
"@types/request-promise-native": "1.0.21",
|
|
"@types/semver": "7.5.8",
|
|
"@types/sinon": "17.0.3",
|
|
"@types/superagent": "8.1.8",
|
|
"axios": "1.6.0",
|
|
"codecov": "3.8.3",
|
|
"cross-var": "1.1.0",
|
|
"lerna": "6.6.2",
|
|
"mocha": "10.2.0",
|
|
"nock": "13.3.8",
|
|
"nyc": "15.1.0",
|
|
"request": "2.88.2",
|
|
"request-promise-native": "1.0.9",
|
|
"sinon": "15.1.2",
|
|
"superagent": "9.0.2",
|
|
"typescript": "4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/core": "1.25.1",
|
|
"@opentelemetry/instrumentation": "0.52.1",
|
|
"@opentelemetry/semantic-conventions": "1.25.1",
|
|
"semver": "^7.5.2"
|
|
},
|
|
"files": [
|
|
"build/package.json",
|
|
"build/src/**/*.js",
|
|
"build/src/**/*.js.map",
|
|
"build/src/**/*.d.ts",
|
|
"doc",
|
|
"LICENSE",
|
|
"README.md"
|
|
]
|
|
}
|