{
  "name": "liteorm",
  "version": "0.9.5",
  "description": "Simple ORM for SQLite with decorators and TypeScript interfaces",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "prepack": "pnpm build",
    "build": "rm -rf ./lib && tsc -P ./src/tsconfig.json",
    "test": "ts-mocha ./tests/**/*.spec.ts"
  },
  "keywords": [
    "sqlite",
    "orm"
  ],
  "files": [
    "lib",
    "src",
    "tsconfig.json"
  ],
  "author": {
    "name": "Pacharapol Withayasakpunt",
    "email": "polv@polv.cc",
    "url": "https://www.polv.cc"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/patarapolw/liteorm.git"
  },
  "dependencies": {
    "emittery": "^0.7.2",
    "reflect-metadata": "^0.1.13"
  },
  "devDependencies": {
    "@types/bluebird-global": "^3.5.12",
    "@types/faker": "^5.1.4",
    "@types/mocha": "^8.0.4",
    "@types/node": "^14.14.7",
    "@types/sqlite3": "^3.1.6",
    "@typescript-eslint/eslint-plugin": "^4.8.1",
    "@typescript-eslint/parser": "^4.8.1",
    "bluebird": "^3.7.2",
    "bluebird-global": "^1.0.1",
    "eslint": ">=6.2.2",
    "eslint-config-prettier": "^6.11.0",
    "eslint-config-standard": "^16.0.1",
    "eslint-plugin-node": ">=9.1.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-promise": ">=4.2.1",
    "eslint-plugin-standard": ">=4.0.0",
    "faker": "^4.1.0",
    "husky": "^4.3.0",
    "import-sort-parser-typescript": "^6.0.0",
    "mocha": "^8.2.1",
    "prettier": "^2.1.2",
    "sqlite3": "^4.1.1",
    "ts-mocha": "^8.0.0",
    "typescript": "^4.0.5"
  },
  "peerDependencies": {
    "bluebird": "^3.7.2",
    "bluebird-global": "^1.0.1",
    "sqlite3": "^5.0.0"
  },
  "engines": {
    "node": "12.x",
    "npm": "please-use-pnpm",
    "pnpm": "5.x",
    "yarn": "please-use-pnpm"
  },
  "importSort": {
    ".js, .jsx, .ts, .tsx": {
      "parser": "typescript",
      "style": "module"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "pnpm build"
    }
  }
}