UNPKG

nodejs-jdbc

Version:
68 lines (67 loc) 1.84 kB
{ "name": "nodejs-jdbc", "version": "0.1.5", "description": "JDBC wrapper for Node", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "license": "MIT", "readmeFilename": "README.md", "private": false, "engines": { "node": ">= 14.0.0", "npm": ">= 6.0.0" }, "homepage": "https://github.com/pueteam/nodejs-jdbc", "repository": { "type": "git", "url": "git+https://github.com/pueteam/nodejs-jdbc.git" }, "bugs": "https://github.com/pueteam/nodejs-jdbc/issues", "keywords": [ "jdbc", "node", "java", "wrapper" ], "author": { "name": "Sergio Rodriguez de Guzman", "email": "sergio@pue.es", "url": "https://github.com/pueteam/nodejs-jdbc" }, "contributors": [], "scripts": { "ci": "npx tsc -p tsconfig-build.json", "build": "npx tsc -p tsconfig-build.json", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest --runInBand", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand" }, "devDependencies": { "@babel/eslint-parser": "^7.24.1", "@types/jest": "^29.5.12", "@types/node": "^20.11.30", "@types/uuid": "^9.0.8", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "ts-loader": "^9.5.1", "ts-node": "^10.9.2", "typescript": "^5.4.3" }, "dependencies": { "java": "^0.14.0", "uuid": "^9.0.1", "winston": "^3.13.0" } }