{
  "name": "@alt-javascript/config",
  "version": "3.0.7",
  "description": "An extensible wrapper of the popular config package, supporting placeholder resolution, encrypted values and url fetch.",
  "author": "Craig Parravicini",
  "contributors": [
    "Claude (Anthropic)",
    "Spring Framework (VMware/Broadcom) — design inspiration and pattern source"
  ],
  "keywords": [
    "config",
    "property",
    "properties",
    "placeholder",
    "variable",
    "expansion"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "main": "index.js",
  "type": "module",
  "exports": {
    ".": {
      "browser": "./browser/index.js",
      "default": "./index.js"
    },
    "./browser/index.js": "./browser/index.js"
  },
  "files": [
    "*.js",
    "browser/",
    "dist/"
  ],
  "scripts": {
    "build": "rollup -c rollup.config.js",
    "prepublishOnly": "npm run build",
    "lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
    "test": "npm run test:unit",
    "test:unit": "npm run test:tdd",
    "test:tdd": "mocha --require test/fixtures/index.js",
    "coverage": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test"
  },
  "license": "MIT",
  "dependencies": {
    "@alt-javascript/common": "3.0.7",
    "@alt-javascript/jasypt": "^1.0.0",
    "js-yaml": "^4.1.0"
  },
  "devDependencies": {
    "@alt-javascript/boot": "3.0.7",
    "@alt-javascript/logger": "3.0.7",
    "c8": "^7.11.0",
    "chai": "^4.3.4",
    "config": "^4.4.1",
    "eslint": "^7.30.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-import": "^2.23.4",
    "mocha": "^11.7.5",
    "node-fetch": "^2.6.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alt-javascript/boot.git",
    "directory": "packages/config"
  },
  "homepage": "https://github.com/alt-javascript/boot/tree/main/packages/config#readme",
  "bugs": {
    "url": "https://github.com/alt-javascript/boot/issues"
  },
  "engines": {
    "node": ">=20"
  }
}
