dynatrace-data-sdk
Version:
A package to facilitate the ingestion of various data types into Dynatrace.
49 lines (48 loc) • 1.31 kB
JSON
{
"name": "dynatrace-data-sdk",
"version": "0.0.5",
"type": "module",
"description": "A package to facilitate the ingestion of various data types into Dynatrace.",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"source": "./src/index.ts",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib",
"typecheck": "tsc --noEmit && echo \"Checked types for dynatrace-data-sdk\" ",
"build": "npm run ts-declaration && node ./build.js && echo 'JS build complete'",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulmorar/dynatrace-data-sdk.git"
},
"keywords": [
"dynatrace",
"data",
"ingestion",
"sdk"
],
"author": "paulmorar",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulmorar/dynatrace-data-sdk/issues"
},
"homepage": "https://github.com/paulmorar/dynatrace-data-sdk#readme",
"devDependencies": {
"@vitest/coverage-v8": "^3.0.2",
"@vitest/ui": "3.0.2",
"esbuild": "0.24.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vitest": "3.0.2"
},
"dependencies": {
"axios": "1.7.9"
}
}