{
  "name": "weldable",
  "version": "5.0.1",
  "description": "A webpack configuration tool.",
  "author": "cdcabrera",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cdcabrera/weldable.git"
  },
  "bugs": {
    "url": "https://github.com/cdcabrera/weldable/issues"
  },
  "keywords": [
    "build",
    "config",
    "configuration",
    "webpack"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "lib/",
    "src/*js"
  ],
  "bin": {
    "weldable": "bin/cli.js"
  },
  "type": "commonjs",
  "main": "./lib/index.js",
  "scripts": {
    "build:packages-lib": "node ./scripts/generatePackagesLib.js",
    "build:deps": "bash ./scripts/dependencies.sh --doctor -u --doctorTest \"npm run test:deps\"",
    "build:docs": "run-s -l test:docs docs:md",
    "docs:md": "node ./scripts/readme.docs.js",
    "release": "changelog",
    "start": "export _WELDABLE_DEV=true; ./bin/cli.js",
    "test": "run-s -l test:lint test:spell* test:ci",
    "test:ci": "export CI=true; export _WELDABLE_TEST=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"",
    "test:clearCache": "jest --clearCache",
    "test:coverage": "run-s test:ci test:coverageSummary",
    "test:coverageSummary": "node ./scripts/actions.coverage.js",
    "test:deps": "run-s test",
    "test:dev": "eslint ./bin ./src; run-s test:spell test:local",
    "test:docs": "run-s test:spell test:lint",
    "test:integration": "export _WELDABLE_TEST=true; jest --roots=./tests",
    "test:integration-dev": "export _WELDABLE_TEST=true; jest --roots=./tests --watchAll",
    "test:lint": "eslint ./bin ./src eslint.config.mjs",
    "test:local": "export _WELDABLE_TEST=true; jest --watch",
    "test:spell-docs": "cspell ./README.md ./DOCS.md ./CONTRIBUTING.md --config ./cspell.config.json",
    "test:spell": "cspell './bin/**/*.js' './src/**/*.js' './tests/**/*.js' --config ./cspell.config.json"
  },
  "jest": {
    "roots": [
      "src"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 60,
        "functions": 75,
        "lines": 80,
        "statements": 80
      }
    },
    "collectCoverageFrom": [
      "src/**/*.js",
      "!src/**/.*/**",
      "!src/logger/*"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>jest.setupTests.js"
    ]
  },
  "dependencies": {
    "@babel/core": "7.27.4",
    "@babel/plugin-transform-runtime": "^7.27.4",
    "@babel/preset-env": "^7.27.2",
    "@babel/preset-react": "^7.27.1",
    "@tsconfig/create-react-app": "^2.0.5",
    "@tsconfig/node18": "^18.2.4",
    "@tsconfig/node20": "^20.1.5",
    "@tsconfig/react-native": "^3.0.5",
    "@tsconfig/recommended": "^1.0.8",
    "@tsconfig/strictest": "^2.0.5",
    "babel-loader": "^10.0.0",
    "copy-webpack-plugin": "^13.0.0",
    "css-loader": "^7.1.2",
    "css-minimizer-webpack-plugin": "^7.0.2",
    "dotenv": "^16.4.7",
    "dotenv-expand": "^11.0.6",
    "dotenv-webpack": "^8.1.0",
    "eslint-webpack-plugin": "^5.0.2",
    "html-replace-webpack-plugin": "^2.6.0",
    "html-webpack-plugin": "^5.6.3",
    "less": "^4.3.0",
    "less-loader": "^12.3.0",
    "mini-css-extract-plugin": "^2.9.2",
    "mini-svg-data-uri": "^1.4.4",
    "rimraf": "^6.0.1",
    "sass": "^1.89.2",
    "sass-loader": "^16.0.5",
    "style-loader": "^4.0.0",
    "terser-webpack-plugin": "^5.3.14",
    "ts-loader": "^9.5.2",
    "tsconfig-paths-webpack-plugin": "^4.2.0",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3",
    "webpack": "^5.99.9",
    "webpack-bundle-analyzer": "^4.10.2",
    "webpack-cli": "^6.0.1",
    "webpack-dev-server": "^5.2.2",
    "webpack-merge": "^6.0.1",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@eslint/compat": "^1.2.9",
    "@eslint/js": "^9.28.0",
    "changelog-light": "^3.0.0",
    "cspell": "^9.0.2",
    "eslint": "^9.28.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jest": "^28.13.0",
    "eslint-plugin-jsdoc": "^50.7.1",
    "eslint-plugin-n": "^17.19.0",
    "eslint-plugin-prettier": "^5.4.1",
    "jest": "^29.7.0",
    "jsdoc-to-markdown": "^9.1.1",
    "lodash": "^4.17.21",
    "npm-check-updates": "^18.0.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.5.3"
  }
}
