UNPKG

easy-mssql

Version:

This is a simple and easy to use mssql library for node.js

51 lines 1.54 kB
{ "name": "easy-mssql", "version": "0.0.4", "description": "This is a simple and easy to use mssql library for node.js", "main": "dist/database.js", "types": "dist/database.d.ts", "scripts": { "start": "node dist/simple/server.js", "dev": "nodemon dist/simple/server.js", "build": "tsc", "watch": "tsc -w", "test-ts": "ts-node simple/test.ts", "test-js": "node simple/test.js", "test": "npm run test-ts && npm run test-js", "update-in-windows": "npm run uninstall-in-windows && update-modules && npm i && npm audit fix", "update-in-linux": "npm run uninstall-in-linux && update-modules && npm i && npm audit fix", "uninstall-in-windows": "rmdir node_modules /s /q && del package-lock.json && npm i update-modules@latest", "uninstall-in-linux": "rm -rf node_modules && rm package-lock.json && npm i update-modules@latest" }, "author": { "name": "cihatksm", "email": "me@cihatksm.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/cihatksm/easy-mssql.git" }, "keywords": [ "cihatksm", "sql", "easy", "easymssql", "easy-mssql", "mssql", "node-mssql", "database" ], "dependencies": { "colors": "^1.4.0", "mssql": "^11.0.1", "update-modules": "^0.1.9" }, "devDependencies": { "@types/mssql": "^9.1.7", "@types/node": "^24.0.1", "nodemon": "^3.1.10", "ts-node": "^10.9.2", "typescript": "^5.8.3" } }