{
  "name": "konvenient",
  "version": "3.1.0",
  "description": " Decorator-driven configuration library for TypeScript, based on convict.",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dwmt/konvenient.git"
  },
  "homepage": "https://github.com/dwmt/konvenient",
  "bugs": {
    "url": "https://github.com/dwmt/konvenient/issues"
  },
  "keywords": [
    "typescript",
    "configuration",
    "convict",
    "inversify"
  ],
  "author": "Attila Bagossy",
  "license": "MIT",
  "devDependencies": {
    "@commitlint/cli": "12.1.4",
    "@dwmt/branchlint": "1.3.0",
    "@dwmt/commitlint-config-numbered-type": "1.0.0",
    "@dwmt/commitlint-plugin-numbered-type": "1.0.0",
    "@jest/globals": "27.0.6",
    "@types/convict": "6.1.1",
    "@types/jest": "26.0.23",
    "@types/lodash.clonedeepwith": "4.5.6",
    "@types/lodash.snakecase": "4.1.6",
    "@types/node": "15.12.4",
    "eslint-config-xo-typescript": "0.44.0",
    "husky": "6.0.0",
    "jest": "27.0.4",
    "jest-junit": "13.0.0",
    "lint-staged": "11.0.0",
    "rimraf": "3.0.2",
    "ts-jest": "27.0.3",
    "ts-node": "10.0.0",
    "typedoc": "0.21.0",
    "typescript": "4.3.3",
    "xo": "0.44.0"
  },
  "engines": {
    "node": ">=14"
  },
  "dependencies": {
    "convict": "6.1.0",
    "lodash.clonedeepwith": "4.5.0",
    "lodash.snakecase": "4.1.1",
    "reflect-metadata": "0.1.13"
  },
  "scripts": {
    "clean": "rimraf ./dist ./coverage ./generated-docs ./junit.xml",
    "compile": "tsc",
    "compile:watch": "tsc --watch",
    "docs": "typedoc --out generated-docs src",
    "lint": "xo",
    "lint:fix": "xo --fix",
    "lint:staged": "lint-staged",
    "test": "jest --coverage",
    "test:watch": "jest --watch"
  }
}