tedious
Version:
A TDS driver, for connecting to MS SQLServer databases.
143 lines (142 loc) • 3.65 kB
JSON
{
"author": "Mike D Pilsbury <mike.pilsbury@gmail.com>",
"contributors": [
"Alex Robson",
"Arthur Schreiber",
"Bret Copeland <bret@atlantisflight.org> (https://github.com/bretcope)",
"Bryan Ross <bryan@rossipedia.com> (https://github.com/rossipedia)",
"Ciaran Jessup <ciaranj@gmail.com>",
"Cort Fritz <cfritz@caa.com>",
"lastonesky",
"Patrik Simek <patrik@patriksimek.cz>",
"Phil Dodderidge <pdodde@poyntz.com>",
"Zach Aller"
],
"name": "tedious",
"description": "A TDS driver, for connecting to MS SQLServer databases.",
"keywords": [
"sql",
"database",
"mssql",
"sqlserver",
"sql-server",
"tds",
"msnodesql",
"azure"
],
"homepage": "https://github.com/tediousjs/tedious",
"bugs": "https://github.com/tediousjs/tedious/issues",
"license": "MIT",
"version": "19.1.3",
"main": "./lib/tedious.js",
"types": "./lib/tedious.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/tedious.git"
},
"engines": {
"node": ">=18.17"
},
"publishConfig": {
"tag": "next",
"provenance": true
},
"dependencies": {
"@azure/core-auth": "^1.7.2",
"@azure/identity": "^4.2.1",
"@azure/keyvault-keys": "^4.4.0",
"@js-joda/core": "^5.6.5",
"@types/node": ">=18",
"bl": "^6.1.4",
"iconv-lite": "^0.7.0",
"js-md4": "^0.3.2",
"native-duplexpair": "^1.0.0",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/node": "^7.28.0",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.3",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/async": "^3.2.25",
"@types/chai": "^4.3.20",
"@types/depd": "^1.1.37",
"@types/lru-cache": "^5.1.1",
"@types/mocha": "^10.0.10",
"@types/sprintf-js": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"async": "^3.2.6",
"babel-plugin-istanbul": "^7.0.1",
"chai": "^4.5.0",
"codecov": "^3.8.3",
"eslint": "^9.39.1",
"mitm": "^1.7.3",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"rimraf": "^5.0.10",
"semantic-release": "^22.0.12",
"sinon": "^21.0.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"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"
]
}
}