{
  "name": "@mu-ts/configurations",
  "version": "3.0.7",
  "description": "Convenience around configurations.",
  "main": "./lib/index",
  "types": "./lib/index",
  "author": "matt.filion@gmail.com",
  "scripts": {
    "build": "tsc -p .",
    "test": "nyc mocha -r ts-node/register spec/**/*.spec.ts",
    "coverage": "nyc report --reporter text-summary",
    "coverage-export": "nyc report --reporter=lcov > coverage.lcov",
    "lint": "tslint -p .",
    "clean": "rm -rf coverage lib .nyc_output"
  },
  "files": [
    "lib/*",
    "README.md",
    "LICENSE",
    "CODE_OF_CONDUCT.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mu-ts/configurations.git"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/mu-ts/configurations/issues"
  },
  "homepage": "https://github.com/mu-ts/configurations#readme",
  "dependencies": {
    "@mu-ts/logger": "^3.2.0"
  },
  "peerDependencies": {
    "@aws-sdk/client-kms": "^3.433.0",
    "@aws-sdk/client-lambda": "^3.433.0",
    "@aws-sdk/client-secrets-manager": "^3.433.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.9",
    "@types/mocha": "^10.0.3",
    "@types/node": "^18.18.6",
    "@types/sinon": "^10.0.20",
    "chai": "^4.3.10",
    "chai-as-promised": "^7.1.1",
    "codecov": "^3.8.3",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "sinon": "^15.2.0",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.9.1",
    "tslint": "^5.20.1",
    "typescript": "^5.2.2"
  },
  "keywords": [
    "AWS",
    "Secrets Manager",
    "Configuration"
  ],
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "sourceMap": true,
    "instrument": true,
    "all": true
  }
}
