{
  "name": "dd-trace",
  "version": "5.48.0",
  "description": "Datadog APM tracing client for JavaScript",
  "main": "index.js",
  "typings": "index.d.ts",
  "scripts": {
    "env": "bash ./plugin-env",
    "preinstall": "node scripts/preinstall.js",
    "bench": "node benchmark",
    "bench:e2e": "SERVICES=mongo yarn services && cd benchmark/e2e && node benchmark-run.js --duration=30",
    "bench:e2e:ci-visibility": "node benchmark/e2e-ci/benchmark-run.js",
    "type:doc": "cd docs && yarn && yarn build",
    "type:test": "cd docs && yarn && yarn test",
    "lint": "node scripts/check_licenses.js && eslint . --max-warnings 0 && yarn audit",
    "lint:fix": "node scripts/check_licenses.js && eslint . --max-warnings 0 --fix && yarn audit",
    "lint:inspect": "npx @eslint/config-inspector@latest",
    "release:proposal": "node scripts/release/proposal",
    "services": "node ./scripts/install_plugin_modules && node packages/dd-trace/test/setup/services",
    "test": "SERVICES=* yarn services && mocha --expose-gc 'packages/dd-trace/test/setup/node.js' 'packages/*/test/**/*.spec.js'",
    "test:appsec": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" --exclude \"packages/dd-trace/test/appsec/**/*.plugin.spec.js\" \"packages/dd-trace/test/appsec/**/*.spec.js\"",
    "test:appsec:ci": "nyc --no-clean --include \"packages/dd-trace/src/appsec/**/*.js\" --exclude \"packages/dd-trace/test/appsec/**/*.plugin.spec.js\" -- npm run test:appsec",
    "test:appsec:plugins": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/dd-trace/test/appsec/**/*.@($(echo $PLUGINS)).plugin.spec.js\"",
    "test:appsec:plugins:ci": "yarn services && nyc --no-clean --include \"packages/dd-trace/src/appsec/**/*.js\" -- npm run test:appsec:plugins",
    "test:debugger": "mocha -r 'packages/dd-trace/test/setup/mocha.js' 'packages/dd-trace/test/debugger/**/*.spec.js'",
    "test:debugger:ci": "nyc --no-clean --include 'packages/dd-trace/src/debugger/**/*.js' -- npm run test:debugger",
    "test:trace:core": "tap packages/dd-trace/test/*.spec.js \"packages/dd-trace/test/{ci-visibility,datastreams,encode,exporters,opentelemetry,opentracing,plugins,service-naming,standalone,telemetry}/**/*.spec.js\"",
    "test:trace:core:ci": "npm run test:trace:core -- --coverage --nyc-arg=--include=\"packages/dd-trace/src/**/*.js\"",
    "test:instrumentations": "mocha -r 'packages/dd-trace/test/setup/mocha.js' 'packages/datadog-instrumentations/test/**/*.spec.js'",
    "test:instrumentations:ci": "nyc --no-clean --include 'packages/datadog-instrumentations/src/**/*.js' -- npm run test:instrumentations",
    "test:instrumentations:misc": "mocha -r 'packages/dd-trace/test/setup/mocha.js' 'packages/datadog-instrumentations/test/*/**/*.spec.js'",
    "test:instrumentations:misc:ci": "nyc --no-clean --include 'packages/datadog-instrumentations/src/**/*.js' -- npm run test:instrumentations:misc",
    "test:core": "tap \"packages/datadog-core/test/**/*.spec.js\"",
    "test:core:ci": "npm run test:core -- --coverage --nyc-arg=--include=\"packages/datadog-core/src/**/*.js\"",
    "test:lambda": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/dd-trace/test/lambda/**/*.spec.js\"",
    "test:lambda:ci": "nyc --no-clean --include \"packages/dd-trace/src/lambda/**/*.js\" -- npm run test:lambda",
    "test:llmobs:sdk": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" --exclude \"packages/dd-trace/test/llmobs/plugins/**/*.spec.js\" \"packages/dd-trace/test/llmobs/**/*.spec.js\" ",
    "test:llmobs:sdk:ci": "nyc --no-clean --include \"packages/dd-trace/src/llmobs/**/*.js\" -- npm run test:llmobs:sdk",
    "test:llmobs:plugins": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/dd-trace/test/llmobs/plugins/@($(echo $PLUGINS))/*.spec.js\"",
    "test:llmobs:plugins:ci": "yarn services && nyc --no-clean --include \"packages/dd-trace/src/llmobs/**/*.js\" -- npm run test:llmobs:plugins",
    "test:plugins": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/datadog-instrumentations/test/@($(echo $PLUGINS)).spec.js\" \"packages/datadog-plugin-@($(echo $PLUGINS))/test/**/*.spec.js\"",
    "test:plugins:ci": "yarn services && nyc --no-clean --include \"packages/datadog-instrumentations/src/@($(echo $PLUGINS)).js\" --include \"packages/datadog-instrumentations/src/@($(echo $PLUGINS))/**/*.js\" --include \"packages/datadog-plugin-@($(echo $PLUGINS))/src/**/*.js\" -- npm run test:plugins",
    "test:plugins:upstream": "node ./packages/dd-trace/test/plugins/suite.js",
    "test:profiler": "tap \"packages/dd-trace/test/profiling/**/*.spec.js\"",
    "test:profiler:ci": "npm run test:profiler -- --coverage --nyc-arg=--include=\"packages/dd-trace/src/profiling/**/*.js\"",
    "test:integration": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/*.spec.js\"",
    "test:integration:appsec": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/appsec/*.spec.js\"",
    "test:integration:cucumber": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/cucumber/*.spec.js\"",
    "test:integration:cypress": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/cypress/*.spec.js\"",
    "test:integration:debugger": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/debugger/*.spec.js\"",
    "test:integration:jest": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/jest/*.spec.js\"",
    "test:integration:mocha": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/mocha/*.spec.js\"",
    "test:integration:playwright": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/playwright/*.spec.js\"",
    "test:integration:selenium": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/selenium/*.spec.js\"",
    "test:integration:vitest": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/vitest/*.spec.js\"",
    "test:integration:profiler": "mocha --timeout 180000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/profiler/*.spec.js\"",
    "test:integration:serverless": "mocha --timeout 60000 -r \"packages/dd-trace/test/setup/core.js\" \"integration-tests/serverless/*.spec.js\"",
    "test:integration:plugins": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/datadog-plugin-@($(echo $PLUGINS))/test/integration-test/**/*.spec.js\"",
    "test:unit:plugins": "mocha -r \"packages/dd-trace/test/setup/mocha.js\" \"packages/datadog-instrumentations/test/@($(echo $PLUGINS)).spec.js\" \"packages/datadog-plugin-@($(echo $PLUGINS))/test/**/*.spec.js\" --exclude \"packages/datadog-plugin-@($(echo $PLUGINS))/test/integration-test/**/*.spec.js\"",
    "test:shimmer": "mocha 'packages/datadog-shimmer/test/**/*.spec.js'",
    "test:shimmer:ci": "nyc --no-clean --include 'packages/datadog-shimmer/src/**/*.js' -- npm run test:shimmer"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DataDog/dd-trace-js.git"
  },
  "keywords": [
    "datadog",
    "trace",
    "tracing",
    "profile",
    "profiler",
    "profiling",
    "opentracing",
    "apm"
  ],
  "author": "Datadog Inc. <info@datadoghq.com>",
  "license": "(Apache-2.0 OR BSD-3-Clause)",
  "bugs": {
    "url": "https://github.com/DataDog/dd-trace-js/issues"
  },
  "homepage": "https://github.com/DataDog/dd-trace-js#readme",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@datadog/libdatadog": "^0.5.1",
    "@datadog/native-appsec": "8.5.2",
    "@datadog/native-iast-taint-tracking": "3.3.1",
    "@datadog/native-metrics": "^3.1.1",
    "@datadog/pprof": "5.7.1",
    "@datadog/sketches-js": "^2.1.0",
    "@datadog/wasm-js-rewriter": "4.0.0",
    "@isaacs/ttlcache": "^1.4.1",
    "@opentelemetry/api": ">=1.0.0 <1.9.0",
    "@opentelemetry/core": "^1.14.0",
    "crypto-randomuuid": "^1.0.0",
    "dc-polyfill": "0.1.8",
    "ignore": "^5.2.4",
    "import-in-the-middle": "1.13.1",
    "istanbul-lib-coverage": "3.2.0",
    "jest-docblock": "^29.7.0",
    "koalas": "^1.0.2",
    "limiter": "1.1.5",
    "lodash.sortby": "^4.7.0",
    "lru-cache": "^7.14.0",
    "module-details-from-path": "^1.0.3",
    "opentracing": ">=0.12.1",
    "path-to-regexp": "^0.1.12",
    "pprof-format": "^2.1.0",
    "protobufjs": "^7.2.5",
    "retry": "^0.13.1",
    "rfdc": "^1.3.1",
    "semifies": "^1.0.0",
    "shell-quote": "^1.8.1",
    "source-map": "^0.7.4",
    "tlhunter-sorted-set": "^0.1.0",
    "ttl-set": "^1.0.0"
  },
  "devDependencies": {
    "@apollo/server": "^4.11.0",
    "@babel/helpers": "^7.26.10",
    "@eslint/eslintrc": "^3.2.0",
    "@eslint/js": "^9.19.0",
    "@msgpack/msgpack": "^3.0.0-beta3",
    "@stylistic/eslint-plugin-js": "^3.0.1",
    "@types/node": "^16.0.0",
    "autocannon": "^4.5.2",
    "aws-sdk": "^2.1446.0",
    "axios": "^1.8.2",
    "benchmark": "^2.1.4",
    "body-parser": "^1.20.3",
    "chai": "^4.3.7",
    "chalk": "^5.3.0",
    "checksum": "^1.0.0",
    "cli-table3": "^0.6.3",
    "dotenv": "16.3.1",
    "esbuild": "^0.25.0",
    "eslint": "^9.19.0",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-mocha": "^10.5.0",
    "eslint-plugin-n": "^17.15.1",
    "eslint-plugin-promise": "^7.2.1",
    "eslint-plugin-unicorn": "^57.0.0",
    "express": "^4.21.2",
    "get-port": "^3.2.0",
    "glob": "^7.1.6",
    "globals": "^15.10.0",
    "graphql": "0.13.2",
    "jszip": "^3.5.0",
    "knex": "^2.4.2",
    "mkdirp": "^3.0.1",
    "mocha": "^10",
    "multer": "^1.4.5-lts.1",
    "nock": "^11.3.3",
    "nyc": "^15.1.0",
    "proxyquire": "^1.8.0",
    "rimraf": "^3.0.0",
    "semver": "^7.5.4",
    "sinon": "^16.1.3",
    "sinon-chai": "^3.7.0",
    "tap": "^16.3.7",
    "tiktoken": "^1.0.15",
    "yaml": "^2.5.0"
  }
}
