autosql
Version:
An auto-parser of JSON into SQL.
56 lines (55 loc) • 1.34 kB
JSON
{
"name": "autosql",
"version": "1.0.4",
"description": "An auto-parser of JSON into SQL.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run test && npm run build",
"testPublish": "tsc && npm pack",
"prepare": "npm run build",
"db:up": "docker compose -f tests/docker-init/docker-compose.yml up -d",
"db:down": "docker compose -f tests/docker-init/docker-compose.yml down"
},
"keywords": [
"MySQL",
"PGSQL",
"automation",
"laziness",
"JSON",
"typescript",
"sql",
"sql-parser",
"database",
"orm"
],
"author": "w@walterchoi.com",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/ssh2": "^1.15.5",
"@types/pg": "^8.15.5",
"jest": "^30.0.5",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"mysql2": "^3.14.3",
"pg": "^8.16.3",
"ssh2": "^1.16.0"
},
"bugs": {
"url": "https://github.com/walterchoi/autosql/issues"
},
"homepage": "https://github.com/walterchoi/autosql#readme"
}