{
  "name": "typeorm-polymorphic",
  "version": "1.1.0",
  "main": "./dist/index.js",
  "author": {
    "name": "Ashleigh Simonelli",
    "email": "ashleighsimonelli@gmail.com",
    "url": "http://ashleighsimonelli.co.uk"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bashleigh/typeorm-polymorphic"
  },
  "description": "A repository for building typed polymorphic relationships",
  "keywords": [
    "nestjs",
    "typeorm",
    "polymorphic",
    "relationships",
    "decorators",
    "mysql"
  ],
  "scripts": {
    "format": "prettier --write \"src/**/*.ts\"",
    "build": "rm -rf ./dist && tsc && npm run build:index",
    "build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
    "prepublish": "npm run format && npm run build",
    "test": "jest"
  },
  "devDependencies": {
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.14",
    "dotenv": "^8.2.0",
    "husky": "^4.3.6",
    "jest": "^26.6.3",
    "mysql": "^2.18.1",
    "prettier": "^2.2.1",
    "reflect-metadata": "^0.1.13",
    "ts-jest": "^26.4.4",
    "typeorm": "^0.3.12",
    "typescript": "^4.1.3"
  },
  "peerDependencies": {
    "typeorm": "^0.3.0"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "src",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "coverageDirectory": "../coverage"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn format"
    }
  }
}
