@statsig/tedious
Version:
A fork of tedious that supports Fabric OBO auth user impersonation
125 lines (124 loc) • 3.1 kB
JSON
{
"name": "@statsig/tedious",
"description": "A fork of tedious that supports Fabric OBO auth user impersonation",
"keywords": [
"sql",
"database",
"mssql",
"sqlserver",
"sql-server",
"tds",
"msnodesql",
"azure"
],
"homepage": "https://github.com/statsig-io/tedious",
"bugs": "https://github.com/statsig-io/tedious/issues",
"license": "MIT",
"version": "0.1.0",
"main": "./lib/tedious.js",
"types": "./lib/tedious.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/statsig-io/tedious.git"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"@azure/core-auth": "^1.7.2",
"@azure/identity": "^4.2.1",
"@azure/keyvault-keys": "^4.4.0",
"@js-joda/core": "^5.6.3",
"@types/node": ">=18",
"bl": "^6.0.14",
"iconv-lite": "^0.6.3",
"js-md4": "^0.3.2",
"native-duplexpair": "^1.0.0",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@types/async": "^3.2.24",
"@types/chai": "^4.3.12",
"@types/depd": "^1.1.36",
"@types/lru-cache": "^5.1.1",
"@types/mocha": "^10.0.7",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"async": "^3.2.6",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.5.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"mitm": "^1.7.2",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"rimraf": "^5.0.10",
"semantic-release": "^22.0.12",
"sinon": "^15.2.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"scripts": {
"docs": "typedoc",
"lint": "eslint src test --ext .js,.ts && tsc",
"test": "mocha --forbid-only test/unit test/unit/token test/unit/tracking-buffer",
"test-integration": "mocha --forbid-only test/integration/",
"test-all": "mocha --forbid-only test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
"build:types": "tsc --project tsconfig.build-types.json",
"build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts && npm run build:types",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
"babel": {
"sourceMaps": "both",
"ignore": [
"./src/**/*.d.ts"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 18
}
}
],
[
"@babel/preset-typescript",
{
"allowDeclareFields": true
}
]
],
"plugins": [
[
"@babel/transform-typescript",
{
"allowDeclareFields": true
}
]
]
},
"mocha": {
"require": "test/setup.js",
"timeout": 10000,
"extension": [
"js",
"ts"
]
},
"nyc": {
"sourceMap": false,
"instrument": false,
"extension": [
".ts"
]
}
}