{
  "name": "sqlit",
  "version": "2.0.0",
  "description": "Sqlit - A library that makes database access easy and fun",
  "main": "./dist/index.js",
  "files": [
    "dist",
    "lib",
    "bin",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "types": "./dist/index.d.ts",
  "author": "Weidong Fang",
  "license": "MIT",
  "dependencies": {
    "sqlex": "^0.4.2"
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/fangwd/sqlit.git"
  },
  "devDependencies": {
    "@types/jest": "^22.2.0",
    "@types/mysql": "^2.15.4",
    "@types/node": "^9.4.7",
    "@types/sqlite3": "^3.1.5",
    "jest": "^22.4.1",
    "ts-jest": "^22.4.1",
    "typescript": "*"
  },
  "scripts": {
    "test": "jest --runInBand",
    "build": "tsc"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "/test/.+\\.test.ts",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "collectCoverage": false,
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "verbose": true
  }
}
