{
  "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": "14.4.0",
  "main": "./lib/tedious.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/tediousjs/tedious.git"
  },
  "engines": {
    "node": ">= 12"
  },
  "publishConfig": {
    "tag": "next"
  },
  "dependencies": {
    "@azure/identity": "^2.0.1",
    "@azure/keyvault-keys": "^4.3.0",
    "@js-joda/core": "^4.0.0",
    "bl": "^5.0.0",
    "iconv-lite": "^0.6.3",
    "jsbi": "^3.2.1",
    "native-duplexpair": "^1.0.0",
    "node-abort-controller": "^3.0.0",
    "punycode": "^2.1.0",
    "sprintf-js": "^1.1.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.15.4",
    "@babel/core": "^7.15.5",
    "@babel/node": "^7.15.4",
    "@babel/plugin-proposal-class-properties": "^7.14.5",
    "@babel/preset-env": "^7.15.4",
    "@babel/preset-typescript": "^7.15.0",
    "@babel/register": "^7.15.3",
    "@commitlint/cli": "^13.1.0",
    "@commitlint/config-conventional": "^13.1.0",
    "@commitlint/travis-cli": "^13.1.0",
    "@types/async": "^3.2.7",
    "@types/bl": "^5.0.1",
    "@types/chai": "^4.2.21",
    "@types/depd": "^1.1.32",
    "@types/lru-cache": "^5.1.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^12.20.25",
    "@types/sprintf-js": "^1.1.2",
    "@typescript-eslint/eslint-plugin": "^4.30.0",
    "@typescript-eslint/parser": "^4.30.0",
    "async": "^3.2.1",
    "babel-plugin-istanbul": "^6.0.0",
    "chai": "^4.3.4",
    "codecov": "^3.8.3",
    "eslint": "^7.32.0",
    "mitm": "^1.7.2",
    "mocha": "^9.1.1",
    "nyc": "^15.1.0",
    "rimraf": "^3.0.2",
    "semantic-release": "^17.4.7",
    "sinon": "^11.1.2",
    "typedoc": "^0.21.9",
    "typescript": "^4.4.2"
  },
  "scripts": {
    "docs": "typedoc",
    "lint": "eslint src test --ext .js,.ts && tsc",
    "test": "mocha test/unit test/unit/token test/unit/tracking-buffer",
    "test-integration": "mocha test/integration/",
    "test-all": "mocha test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/",
    "build": "rimraf lib && babel src --out-dir lib --extensions .js,.ts",
    "prepublish": "npm run build",
    "semantic-release": "semantic-release"
  },
  "babel": {
    "sourceMaps": "both",
    "ignore": [
      "./src/**/*.d.ts"
    ],
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": 12
          }
        }
      ],
      [
        "@babel/preset-typescript",
        {
          "allowDeclareFields": true
        }
      ]
    ],
    "plugins": [
      [
        "@babel/transform-typescript",
        {
          "allowDeclareFields": true
        }
      ],
      [
        "@babel/plugin-proposal-class-properties",
        {
          "loose": true
        }
      ],
      [
        "@babel/plugin-proposal-private-methods",
        {
          "loose": true
        }
      ],
      [
        "@babel/plugin-proposal-private-property-in-object",
        {
          "loose": true
        }
      ]
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "body-max-line-length": [
        1,
        "always",
        100
      ],
      "footer-max-line-length": [
        1,
        "always",
        100
      ],
      "header-max-length": [
        1,
        "always",
        100
      ]
    }
  },
  "mocha": {
    "require": "test/setup.js",
    "timeout": 5000,
    "extension": [
      "js",
      "ts"
    ]
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "extension": [
      ".ts"
    ]
  }

,"_resolved": "https://registry.npmjs.org/tedious/-/tedious-14.4.0.tgz"
,"_integrity": "sha512-vZQzqg3o7S1CddD1JxwxC+/Crq4kNSHV7NCiK64txURZKKvnc0wFF4mU0eeX1NXkw5m8mSbLX8wSj9EUZAN+fA=="
,"_from": "tedious@14.4.0"
}