{
  "name": "configurity",
  "version": "3.3.0",
  "description": "A production-grade, battle-tested YAML / env-based configuration system.",
  "author": "Scott Sperling <scsper@yahoo.com>",
  "contributors": [
    "Theo Gravity <theo@suteki.nu> (https://github.com/theogravity)"
  ],
  "license": "MIT",
  "main": "build/index.js",
  "scripts": {
    "build": "npm run build:clean && npm run compile",
    "build:clean": "rm -rf build/*",
    "compile": "tsc",
    "bench": "npm run build && grunt bench",
    "test": "ts-mocha - src/**/_test_/**/*_test.*s",
    "test:coverage": "nyc --reporter=text npm test",
    "test:ci": "npm run test:coverage",
    "toc": "toc-md README.md README.md",
    "add-readme": "git add README.md",
    "lint-staged": "lint-staged",
    "lint": "eslint --ext .ts src",
    "prepare-publish": "npm run changelog:prepare && version-bump && npm run changelog:release && npm run changelog:stamp",
    "version-bump": "version-bump",
    "changelog:help": "changelog-version",
    "changelog:verify": "changelog-version verify",
    "changelog:prepare": "changelog-version prepare",
    "changelog:stamp": "git-commit-stamper parse CHANGELOG.md",
    "changelog:release": "changelog-version release"
  },
  "types": "build/index.d.ts",
  "dependencies": {
    "buffer-crc32": "^0.2.13",
    "js-yaml": "^3.14.0",
    "lodash.template": "^4.5.0",
    "tv4": "^1.3.0"
  },
  "devDependencies": {
    "@theo.gravity/changelog-version": "2.1.10",
    "@theo.gravity/version-bump": "2.0.9",
    "@types/chai": "^4.3.11",
    "@types/expect": "^24.3.0",
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.10.8",
    "@types/sinon": "^17.0.3",
    "@types/sinon-chai": "^3.2.12",
    "@types/tv4": "^1.2.33",
    "@typescript-eslint/eslint-plugin": "^6.18.1",
    "@typescript-eslint/parser": "^6.18.1",
    "chai": "^4.4.0",
    "eslint": "^8.56.0",
    "git-commit-stamper": "^1.0.9",
    "grunt": "~1.6.1",
    "grunt-benchmark": "~1.0.0",
    "grunt-cli": "~1.4.3",
    "lint-staged": "10.2.6",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "pre-commit": "1.2.2",
    "sinon": "~17.0.1",
    "sinon-chai": "^3.7.0",
    "toc-md-alt": "^0.4.6",
    "ts-mocha": "^10.0.0",
    "typescript": "5.3.3"
  },
  "keywords": [
    "conf",
    "config",
    "configurator",
    "configuration",
    "env",
    "environment",
    "dimension",
    ".env",
    "settings",
    "options",
    "prefs",
    "preferences",
    "yaml",
    "flags",
    "launchdarkly",
    "darkly",
    "bucket"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/theogravity/configurity.git"
  },
  "homepage": "https://github.com/theogravity/configurity#readme",
  "eslintConfig": {
    "parserOptions": {
      "ecmaVersion": 6,
      "sourceType": "module",
      "ecmaFeatures": {
        "modules": true
      }
    },
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint/eslint-plugin"
    ],
    "ignorePatterns": [
      "node_modules/*",
      "public/*",
      "artifacts/*",
      "test/support/lib/*",
      "tmp/*",
      "coverage/*",
      "test/fixtures/combined/huge.js"
    ],
    "rules": {
      "@typescript-eslint/no-unused-vars": [
        2,
        {
          "args": "none"
        }
      ]
    }
  },
  "lint-staged": {
    "src/**/*.ts": [
      "git add"
    ]
  },
  "pre-commit": [
    "toc",
    "lint-staged",
    "test:ci",
    "build"
  ]
}
