mssql-ease
Version:
Promise style ease-of-use module for working with Microsoft SQL Server from Node.js.
70 lines (69 loc) • 1.83 kB
JSON
{
"name": "mssql-ease",
"description": "Promise style ease-of-use module for working with Microsoft SQL Server from Node.js.",
"version": "2.2.1",
"main": "./index.js",
"keywords": [
"mssql",
"sql server",
"microsoft",
"tsql",
"tds",
"tedious"
],
"author": "Phillip Clark <phillip@flitbit.com>",
"license": "MIT",
"scripts": {
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"devup": "docker-compose up -d",
"devdown": "docker-compose down --volumes",
"pretest": "npm run devup",
"test": "npm run jest",
"prejest": "npm run lint",
"jest": "jest --env=node --runInBand --detectOpenHandles",
"test:watch": "nodemon --ext js,json,yml --exec \"npm test\"",
"preci": "npm run lint",
"ci": "npm run jest",
"lint": "eslint lib test index.js"
},
"homepage": "https://github.com/flitbit/mssql-ease",
"bugs": {
"url": "https://github.com/flitbit/mssql-ease/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flitbit/mssql-ease.git"
},
"dependencies": {
"assert-plus": "^1.0.0",
"debug": "~4.1.1",
"generic-pool": "^3.6.1",
"json-ptr": "^1.1.1",
"lodash": "^4.17.11",
"tedious": "^5.0.3"
},
"devDependencies": {
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"eslint-plugin-jest": "^22.3.0",
"jest": "^24.1.0",
"jest-junit-reporter": "^1.1.0",
"nodemon": "^1.18.10"
},
"engines": {
"node": ">=8.0"
},
"jest": {
"testEnvironment": "node",
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"verbose": true,
"collectCoverage": true,
"coverageDirectory": ".coverage",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/examples/**"
]
}
}