{
  "access": "public",
  "name": "@luics/mysql-server-orm",
  "version": "0.3.0",
  "description": "",
  "author": "luics.xu@gmail.com",
  "license": "MIT",
  "main": "cjs/index.js",
  "types": "cjs/index.d.js",
  "files": [
    "cjs"
  ],
  "keywords": [
    "mysql-server",
    "orm"
  ],
  "scripts": {
    "start": "npm t",
    "lint": "eslint \"@(src|test)/**/*.@(js|ts|tsx)\"",
    "test": "npm run schema2sql && npm run data2sql && nyc --reporter=html --reporter=text --check-coverage --branches 95 mocha -r ts-node/register test/**/*.spec.ts --timeout 20000",
    "test:dev": "chokidar '@(src|test)/**/*.@(js|ts)' --initial -c 'printf \"\\33c\\e[3J\" && npm t'",
    "jsonschema": "typescript-json-schema 'test/server/schema.ts' '*' -o 'test/server/schema.json' --required --propOrder",
    "schema2sql": "schema2sql --input src/x-server-orm/src/test/schema.json --output test/server/schema.sql",
    "data2sql": "data2sql --input src/x-server-orm/src/test/db.json --output test/server/db.sql",
    "dist": "rm -rf cjs && tsc -p tsconfig.cjs.json",
    "preversion": "npm run lint && npm test",
    "version": "npm run dist && git add -A .",
    "postversion": "git push && git push --tags && git subtree push --prefix=src/x-server-orm x-server-orm main"
  },
  "engines": {
    "node": ">= 14.17.0",
    "npm": ">= 6.14.13"
  },
  "dependencies": {
    "@luics/async-throws": "0.0.4",
    "axios": "^0.21.1"
  },
  "devDependencies": {
    "@luics/eslint-config": "^0.1.5",
    "@luics/mysql-server": "^0.4.4",
    "@types/assert": "^1.5.1",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.17.9",
    "@typescript-eslint/eslint-plugin": "^4.29.1",
    "@typescript-eslint/parser": "^4.29.1",
    "chokidar": "^3.5.2",
    "eslint": "^7.32.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.24.0",
    "eslint-plugin-prettier": "^3.4.0",
    "mocha": "^9.0.3",
    "nyc": "^15.1.0",
    "prettier": "^2.3.2",
    "ts-node": "^8.10.2",
    "typescript": "^4.3.2",
    "typescript-json-schema": "^0.50.1"
  }
}
