{
  "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": "6.7.1",
  "main": "./lib/tedious.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/tediousjs/tedious.git"
  },
  "engines": {
    "node": ">= 6"
  },
  "publishConfig": {
    "tag": "next"
  },
  "dependencies": {
    "@azure/ms-rest-nodeauth": "^3.0.10",
    "@types/node": "^12.12.17",
    "@types/readable-stream": "^2.3.5",
    "bl": "^3.0.0",
    "depd": "^2.0.0",
    "iconv-lite": "^0.5.0",
    "jsbi": "^3.1.1",
    "native-duplexpair": "^1.0.0",
    "punycode": "^2.1.0",
    "readable-stream": "^3.4.0",
    "sprintf-js": "^1.1.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.7.5",
    "@babel/core": "^7.7.5",
    "@babel/node": "^7.7.4",
    "@babel/plugin-proposal-class-properties": "^7.7.4",
    "@babel/preset-env": "^7.7.6",
    "@babel/preset-typescript": "^7.7.4",
    "@babel/register": "^7.7.4",
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "@commitlint/travis-cli": "^8.2.0",
    "@types/bl": "^2.1.0",
    "@types/depd": "^1.1.32",
    "@types/sprintf-js": "^1.1.2",
    "async": "^2.6.3",
    "babel-eslint": "^11.0.0-beta.2",
    "babel-plugin-istanbul": "^5.2.0",
    "benchmark": "^2.1.0",
    "chai": "^4.1.2",
    "codecov": "^3.6.1",
    "eslint": "^5.16.0",
    "mitm": "^1.7.0",
    "mocha": "^6.2.2",
    "npm": "^6.14.13",
    "nyc": "^14.1.1",
    "rimraf": "^3.0.0",
    "semantic-release": "^17.4.4",
    "sinon": "^7.5.0",
    "typescript": "^3.7.3"
  },
  "scripts": {
    "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": {
    "ignore": [
      "./src/**/*.d.ts"
    ],
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": 6
          }
        }
      ],
      [
        "@babel/preset-typescript",
        {
          "allowDeclareFields": true
        }
      ]
    ],
    "plugins": [
      [
        "@babel/transform-typescript",
        {
          "allowDeclareFields": true
        }
      ],
      [
        "@babel/plugin-proposal-class-properties",
        {
          "loose": true
        }
      ]
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false,
    "extension": [
      ".ts"
    ]
  }
}
