db-sql-toolkit
Version:
Helps with SQL statements, database migration, and bulk execution.
49 lines (48 loc) • 1.51 kB
JSON
{
"name": "db-sql-toolkit",
"version": "2.5.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.27.2",
"@babel/core": "7.27.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@biomejs/biome": "1.9.4",
"@types/jest": "29.5.14",
"eslint": "9.26.0",
"eslint-config-heck": "6.1.0",
"jest": "29.7.0",
"semantic-release": "24.2.3",
"ts-jest": "29.3.3",
"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"
}