{ "name": "weldable", "version": "6.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": ">=22.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:docs": "npm run test:docs && npm run docs:md", "docs:md": "node ./scripts/readme.docs.js", "release": "changelog", "start": "export _WELDABLE_DEV=true; ./bin/cli.js", "test": "npm run test:lint && npm run test:spell && npm run test:spell-docs && npm run test:ci", "test:ci": "export CI=true; export _WELDABLE_TEST=true; jest --collectCoverage --coverageReporters=\"lcov\" --coverageReporters=\"json-summary\"", "test:clearCache": "jest --clearCache", "test:coverage": "npm run test:ci && npm run test:coverageSummary", "test:coverageSummary": "node ./scripts/actions.coverage.js", "test:deps": "npm test", "test:dev": "eslint ./bin ./src; npm run test:spell && npm run test:local", "test:docs": "npm run test:spell && npm run 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": [ "jest.setupTests.js" ] }, "dependencies": { "@babel/core": "7.29.7", "@babel/plugin-transform-runtime": "7.29.7", "@babel/preset-env": "7.29.7", "@babel/preset-react": "7.28.5", "@tsconfig/create-react-app": "2.0.8", "@tsconfig/node20": "20.1.9", "@tsconfig/node22": "22.0.5", "@tsconfig/node24": "24.0.4", "@tsconfig/react-native": "3.0.7", "@tsconfig/recommended": "1.0.11", "@tsconfig/strictest": "2.0.6", "babel-loader": "10.0.0", "copy-webpack-plugin": "14.0.0", "css-loader": "7.1.4", "css-minimizer-webpack-plugin": "8.0.0", "cssnano": "8.0.2", "dotenv": "16.6.1", "dotenv-expand": "11.0.7", "dotenv-webpack": "8.1.1", "eslint-webpack-plugin": "5.0.3", "html-replace-webpack-plugin": "2.6.0", "html-webpack-plugin": "5.6.6", "less": "4.5.1", "less-loader": "12.3.2", "mini-css-extract-plugin": "2.10.2", "mini-svg-data-uri": "1.4.4", "minimizer-webpack-plugin": "5.6.1", "postcss": "8.5.16", "rimraf": "6.1.3", "sass": "1.97.3", "sass-loader": "16.0.7", "style-loader": "4.0.0", "terser-webpack-plugin": "5.4.0", "ts-loader": "9.5.7", "tsconfig-paths-webpack-plugin": "4.2.0", "tslib": "2.8.1", "typescript": "5.9.3", "webpack": "5.105.4", "webpack-bundle-analyzer": "5.2.0", "webpack-cli": "6.0.1", "webpack-dev-server": "5.2.5", "webpack-merge": "6.0.1", "yargs": "17.7.2" }, "devDependencies": { "@cdcabrera/eslint-config-toolkit": "^0.5.3", "changelog-light": "^3.0.8", "cspell": "^9.7.0", "eslint": "^9.39.4", "jest": "^30.3.0", "jsdoc-to-markdown": "^9.1.3", "lodash": "^4.18.1" } }