{
  "name": "@vinsidious/nestjs-config",
  "version": "1.0.4",
  "description": "Easy to use Nest congifuration module",
  "main": "index.js",
  "repository": "github:vinsidious/nestjs-config",
  "license": "MIT",
  "author": {
    "name": "Vince Coppola",
    "email": "vincecoppola@gmail.com"
  },
  "keywords": [
    "nestjs",
    "config",
    "environment"
  ],
  "scripts": {
    "test": "jest",
    "coverage": "jest --coverage",
    "coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
    "test:watch": "jest --watch",
    "build": "rm -rf ./dist && tsc && npm run build:index",
    "build:watch": "rm -rf ./dist && tsc -w",
    "build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
    "format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
    "prepublish": "npm run format && npm run build",
    "release": "yarn publish --access public"
  },
  "peerDependencies": {
    "@nestjs/common": "^5.1.0"
  },
  "dependencies": {
    "dotenv-flow": "^0.1.0",
    "glob": "^7.1.2",
    "lodash.get": "^4.4.2",
    "lodash.set": "^4.3.2",
    "reflect-metadata": "^0.1.12",
    "rxjs": "^6.0.0"
  },
  "devDependencies": {
    "@nestjs/common": "^5.1.0",
    "@nestjs/core": "^5.1.0",
    "@nestjs/testing": "^5.1.0",
    "@types/dotenv": "^6.1.0",
    "@types/glob": "^5.0.35",
    "@types/jest": "^23.3.0",
    "coveralls": "^3.0.2",
    "jest": "^23.3.0",
    "prettier": "^1.13.7",
    "ts-jest": "^23.0.0",
    "typescript": "^2.9.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "src",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "coverageDirectory": "./coverage"
  }
}
