mssql
Version:
Microsoft SQL Server client for Node.js.
58 lines (57 loc) • 1.25 kB
JSON
{
"author": {
"name": "Patrik Simek",
"url": "https://patriksimek.cz"
},
"name": "mssql",
"description": "Microsoft SQL Server client for Node.js.",
"keywords": [
"database",
"mssql",
"sql",
"server",
"msnodesql",
"sqlserver",
"tds",
"node-tds",
"tedious",
"node-sqlserver",
"sqlserver",
"msnodesqlv8",
"azure",
"node-mssql"
],
"version": "5.0.3",
"main": "index.js",
"repository": "github:tediousjs/node-mssql",
"license": "MIT",
"dependencies": {
"debug": "^3.2.6",
"generic-pool": "^3.6.1",
"tedious": "^4.2.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"standard": "^11.0.1"
},
"engines": {
"node": ">=6"
},
"files": [
"lib/",
"bin/",
"*.js",
"*.md"
],
"scripts": {
"test": "npm run lint && npm run test-unit",
"lint": "standard",
"test-unit": "node_modules/.bin/mocha --exit -t 15000 test/common/unit.js",
"test-tedious": "node_modules/.bin/mocha --exit -t 15000 test/tedious",
"test-msnodesqlv8": "node_modules/.bin/mocha --exit -t 15000 test/msnodesqlv8",
"test-cli": "node_modules/.bin/mocha --exit -t 15000 test/common/cli.js"
},
"bin": {
"mssql": "./bin/mssql"
}
}