{
  "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": "2.6.4",
  "main": "./lib/tedious.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/tediousjs/tedious.git"
  },
  "engines": {
    "node": ">= 4"
  },
  "publishConfig": {
    "tag": "next"
  },
  "dependencies": {
    "babel-runtime": "^6.26.0",
    "big-number": "0.3.1",
    "bl": "^1.2.2",
    "depd": "^1.1.2",
    "native-duplexpair": "^1.0.0",
    "iconv-lite": "^0.4.23",
    "punycode": "^2.1.0",
    "readable-stream": "^2.3.6",
    "sprintf-js": "^1.1.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^6.2.0",
    "@commitlint/config-conventional": "^6.1.3",
    "@commitlint/travis-cli": "^6.2.0",
    "async": "^1.4.0",
    "babel-cli": "^6.26.0",
    "babel-eslint": "^7.2.3",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.6.1",
    "babel-preset-flow": "^6.23.0",
    "babel-register": "^6.26.0",
    "benchmark": "^2.1.0",
    "chai": "^4.1.2",
    "eslint": "^3.19.0",
    "flow-bin": "^0.72.0",
    "mitm": "^1.3.2",
    "mocha": "^5.2.0",
    "nodeunit": "^0.11.0",
    "rimraf": "^2.6.1",
    "semantic-release": "^12.2.5",
    "sinon": "^1.17.5"
  },
  "scripts": {
    "lint": "eslint src test && flow",
    "test": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer && mocha test/unit/**/*-test.js",
    "test-integration": "nodeunit --reporter minimal test/setup.js test/integration/ && mocha test/integration/**/*-test.js",
    "test-all": "nodeunit --reporter minimal test/setup.js test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/ && mocha test/**/*-test.js",
    "build": "rimraf lib && babel src --out-dir lib",
    "prepublish": "npm run build",
    "semantic-release": "semantic-release"
  },
  "babel": {
    "presets": [
      [
        "env",
        {
          "targets": {
            "node": 4
          }
        }
      ],
      "flow"
    ],
    "plugins": [
      "transform-runtime"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
