{
  "name": "@visionelixir/elixir",
  "version": "0.14.5",
  "description": "VisionElixir Framework",
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/visionelixir/elixir"
  },
  "scripts": {
    "test": "jest",
    "lint": "esw 'src/**/*.{js,ts}'",
    "lint:watch": "esw -w 'src/**/*.{js,ts}'",
    "typescript:build": "tsc",
    "typescript:watch": "tsc --watch",
    "build": "rm -rf dist && npm test && npm run lint && npm run typescript:build",
    "check": "npm run lint && tsc --noEmit",
    "deploy": "npm run build && npm publish",
    "git:version:push": "git push --tags && git push origin master",
    "git:version:patch": "npm run build && npm version patch && npm run git:version:push",
    "git:version:minor": "npm run build && npm version minor && npm run git:version:push",
    "git:version:major": "npm run build && npm version major && npm run git:version:push"
  },
  "author": "Brent Honeybone",
  "license": "ISC",
  "dependencies": {
    "@google-cloud/logging": "^8.1.0",
    "chalk": "^4.1.0",
    "koa": "^2.13.0",
    "koa-bodyparser": "^4.3.0",
    "koa-compress": "^5.0.1",
    "koa-router": "^9.1.0",
    "koa-static": "^5.0.0",
    "lodash": "^4.17.19",
    "nunjucks": "^3.2.2",
    "pg": "^8.3.0",
    "yargs-parser": "^18.1.3"
  },
  "devDependencies": {
    "@types/chalk": "^2.2.0",
    "@types/jest": "^26.0.7",
    "@types/koa": "^2.11.3",
    "@types/koa-bodyparser": "^4.3.0",
    "@types/koa-compress": "^4.0.0",
    "@types/koa-router": "^7.4.1",
    "@types/koa-static": "^4.0.1",
    "@types/lodash": "^4.14.158",
    "@types/node": "^14.0.26",
    "@types/nunjucks": "^3.1.3",
    "@types/pg": "^7.14.4",
    "@typescript-eslint/eslint-plugin": "^3.7.0",
    "@typescript-eslint/parser": "^3.7.0",
    "eslint": "^7.5.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-watch": "^7.0.0",
    "jest": "^26.1.0",
    "nodemon": "^2.0.4",
    "prettier": "^2.0.5",
    "supertest": "^4.0.2",
    "ts-jest": "^26.1.3",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7"
  },
  "jest": {
    "rootDir": "src",
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "collectCoverage": true,
    "collectCoverageFrom": [
      "./**/*.{ts,js}",
      "!./**/tests/**/*",
      "!./**/mocks/**/*",
      "!./**/__tests__/**/*",
      "!./**/__mocks__/**/*",
      "!./**/test/**/*",
      "!./**/exports.*"
    ],
    "coverageReporters": [
      "text",
      "text-summary"
    ],
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)x?$",
    "testPathIgnorePatterns": [],
    "transform": {
      "^.+\\.(ts)?$": "ts-jest"
    }
  }
}
