{
  "name": "@ff00ff/mammoth",
  "license": "MIT",
  "version": "1.3.0",
  "main": "./.build/index.js",
  "types": "./.build/index.d.ts",
  "keywords": [
    "typescript",
    "postgres",
    "query",
    "builder",
    "sql",
    "typed",
    "database",
    "orm"
  ],
  "files": [
    ".build"
  ],
  "devDependencies": {
    "@types/jest": "^26.0.23",
    "@types/node": "^15.12.4",
    "dts-jest": "^23.3.0",
    "jest": "^26.6.3",
    "prettier": "^2.3.1",
    "ts-jest": "^26.5.6",
    "typescript": "^4.2.4"
  },
  "scripts": {
    "test": "jest",
    "prebuild": "rm -rf .build && rm -rf coverage",
    "build": "tsc",
    "prepublishOnly": "npm run build && npm test"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "__tests__",
      "__checks__"
    ],
    "testPathIgnorePatterns": [
      "/\\.build/",
      "/node_modules/",
      "helpers"
    ],
    "testRegex": "/__tests__|__checks__/.*\\.(test|check)\\.ts$",
    "transform": {
      "\\.check\\.ts$": "dts-jest/transform",
      "\\.ts$": "ts-jest"
    }
  }
}
