UNPKG

db-sql-toolkit

Version:

Helps with SQL statements, database migration, and bulk execution.

49 lines (48 loc) 1.51 kB
{ "name": "db-sql-toolkit", "version": "2.6.0", "description": "Helps with SQL statements, database migration, and bulk execution.", "author": "atheck", "license": "MIT", "scripts": { "build": "npm run build:types && npm run build:js", "build:types": "tsc --emitDeclarationOnly --project ./src", "build:js": "babel src --out-dir dist --extensions \".ts\" --ignore \"./**/*.test.ts\" --source-maps inline", "test": "jest --coverage", "test:watch": "jest --watch --coverage", "lint": "biome lint src --max-diagnostics 200 && npx eslint \"src/**/*.ts\"", "update": "npx npm-check-updates -i --install always && npm update", "semantic-release": "semantic-release" }, "devDependencies": { "@babel/cli": "7.28.0", "@babel/core": "7.28.0", "@babel/plugin-proposal-class-properties": "7.18.6", "@babel/preset-env": "7.28.0", "@babel/preset-react": "7.27.1", "@babel/preset-typescript": "7.27.1", "@biomejs/biome": "2.1.2", "@types/jest": "30.0.0", "eslint": "9.31.0", "eslint-config-heck": "7.1.2", "jest": "30.0.4", "semantic-release": "24.2.7", "ts-jest": "29.4.0", "typescript": "5.8.3" }, "homepage": "https://github.com/atheck/db-sql-toolkit", "repository": { "type": "git", "url": "https://github.com/atheck/db-sql-toolkit.git" }, "keywords": [ "database", "db", "sql", "statements", "migration", "bulk" ], "main": "dist/index.js", "types": "dist/index.d.ts" }