{
  "name": "typeorm-pii-compliance",
  "version": "0.2.0",
  "description": "TypeORM PII Compliance Service: Cascading Personally Identifiable Information Disposal",
  "homepage": "https://github.com/kibae/typeorm-pii-compliance",
  "repository": {
    "type": "git",
    "url": "https://github.com/kibae/typeorm-pii-compliance.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "build": "tsc -p tsconfig.build.json",
    "publish": "npm run build && npm publish --access public"
  },
  "keywords": [
    "TypeORM",
    "PII",
    "Compliance",
    "Personally",
    "Identifiable",
    "Information"
  ],
  "author": "Kibae Shin <kibae.shin@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^28.1.6",
    "jest": "^28.1.3",
    "jest-junit": "^14.0.0",
    "prettier": "^2.7.1",
    "sqlite3": "^5.0.10",
    "ts-jest": "^28.0.7",
    "ts-node": "^10.9.1",
    "typescript": "^4.7.4"
  },
  "dependencies": {
    "typeorm": "^0.3.0"
  },
  "peerDependencies": {
    "typeorm": "^0.3.0"
  },
  "files": [
    "dist/**/*"
  ],
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "testEnvironment": "node",
    "roots": [
      "<rootDir>/src/"
    ],
    "reporters": [
      "default",
      "jest-junit"
    ]
  }
}
