UNPKG

tedious

Version:

A TDS driver, for connecting to MS SQLServer databases.

161 lines (160 loc) 3.97 kB
{ "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": "20.0.0", "main": "./lib/tedious.js", "types": "./lib/tedious.d.ts", "repository": { "type": "git", "url": "https://github.com/tediousjs/tedious.git" }, "engines": { "node": ">=22" }, "publishConfig": { "tag": "next", "provenance": true }, "release": { "branches": [ "+([0-9])?(.{+([0-9]),x}).x", { "name": "master", "channel": "next" }, { "name": "beta", "prerelease": true }, { "name": "alpha", "prerelease": true } ] }, "dependencies": { "@azure/core-auth": "^1.10.1", "@azure/identity": "^4.13.1", "@azure/keyvault-keys": "^4.10.2", "@js-joda/core": "^6.0.1", "@types/node": ">=22", "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/mitm": "^1.3.8", "@types/mocha": "^10.0.10", "@types/sinon": "^21.0.0", "@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": "^8.0.0", "chai": "^4.5.0", "eslint": "^9.39.1", "mitm": "^1.7.3", "mocha": "^11.7.5", "nyc": "^18.0.0", "rimraf": "^6.1.3", "semantic-release": "^25.0.5", "sinon": "^22.0.0", "typedoc": "^0.28.14", "typescript": "^6.0.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": 22 } } ], [ "@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" ] } }