{
  "name": "sequelize-typescript",
  "version": "1.1.0",
  "description": "Decorators and some other features for sequelize",
  "scripts": {
    "build": "tsc",
    "test": "mocha",
    "cover": "nyc mocha",
    "lint": "tslint -c tslint.json --project tsconfig.json",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RobinBuschmann/sequelize-typescript.git"
  },
  "keywords": [
    "orm",
    "object relational mapper",
    "sequelize",
    "typescript",
    "decorators",
    "mysql",
    "sqlite",
    "postgresql",
    "postgres",
    "mssql"
  ],
  "author": "Robin Buschmann",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/RobinBuschmann/sequelize-typescript/issues"
  },
  "homepage": "https://github.com/RobinBuschmann/sequelize-typescript#readme",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "browser": "dist/browser/index.js",
  "dependencies": {
    "glob": "7.1.2"
  },
  "devDependencies": {
    "@types/bluebird": "3.5.25",
    "@types/chai": "3.4.35",
    "@types/chai-as-promised": "0.0.29",
    "@types/chai-datetime": "0.0.30",
    "@types/lodash": "4.14.109",
    "@types/mocha": "2.2.39",
    "@types/node": "11.13.4",
    "@types/prettyjson": "0.0.28",
    "@types/sinon": "1.16.35",
    "@types/sinon-chai": "2.7.27",
    "chai": "3.5.0",
    "chai-as-promised": "6.0.0",
    "chai-datetime": "1.4.1",
    "codecov": "3.1.0",
    "copyfiles": "2.1.0",
    "has-flag": "2.0.0",
    "lodash": "4.17.13",
    "mocha": "5.2.0",
    "moment": "2.21.0",
    "mysql2": "1.3.5",
    "nyc": "13.3.0",
    "prettyjson": "1.2.1",
    "reflect-metadata": "0.1.9",
    "sequelize": "5.15.1",
    "sinon": "1.17.7",
    "sinon-chai": "2.8.0",
    "source-map-support": "0.4.14",
    "sqlite3": "4.0.4",
    "ts-node": "7.0.1",
    "tslint": "5.14.0",
    "typescript": "3.3.3",
    "uuid-validate": "0.0.2"
  },
  "peerDependencies": {
    "@types/bluebird": "*",
    "@types/node": "*",
    "@types/validator": "*",
    "reflect-metadata": "*",
    "sequelize": "^5.1.0"
  },
  "engines": {
    "node": ">=0.8.15"
  },
  "nyc": {
    "lines": 85,
    "statements": 85,
    "functions": 85,
    "branches": 85,
    "include": [
      "src"
    ],
    "exclude": [
      "test"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "cache": true,
    "all": true,
    "check-coverage": true,
    "report-dir": "./coverage"
  }
}
