{
  "name": "elder-sql",
  "version": "0.1.0-alpha.0",
  "description": "Database connection library of a elder style.",
  "main": "lib/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "build": "tsc --build --clean && tsc --build",
    "test": "jest --config jest.config.js",
    "lint": "eslint",
    "version.major": "standard-version --release-as major",
    "version.major.alpha": "standard-version --release-as major --prerelease alpha",
    "version.minor": "standard-version --release-as minor",
    "version.minor.alpha": "standard-version --release-as minor --prerelease alpha",
    "version.patch": "standard-version --release-as patch",
    "release": "git push --follow-tags origin main && npm publish",
    "release.alpha": "git push --follow-tags origin main && npm publish --tag alpha"
  },
  "files": [
    "src/",
    "lib/",
    "types/",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "bin": {
    "esql": "./lib/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hidekatsu-izuno/elder-sql.git"
  },
  "author": "Hidekatsu Izuno <hidekatsu.izuno@gmail.com> (https://github.com/hidekatsu-izuno/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hidekatsu-izuno/elder-sql/issues"
  },
  "homepage": "https://github.com/hidekatsu-izuno/elder-sql#readme",
  "keywords": [
    "sql"
  ],
  "devDependencies": {
    "@tsconfig/recommended": "^1.0.1",
    "@types/jest": "^29.2.3",
    "@typescript-eslint/eslint-plugin": "^5.39.0",
    "@typescript-eslint/parser": "^5.39.0",
    "eslint": "^8.24.0",
    "jest": "^29.3.1",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.0.3",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "decimal.js": "^10.4.2",
    "semver": "^7.3.8",
    "tslib": "^2.4.0"
  }
}
