{ "_from": "webpack-cli@3.1.0", "_id": "webpack-cli@3.1.0", "_inBundle": false, "_integrity": "sha512-p5NeKDtYwjZozUWq6kGNs9w+Gtw/CPvyuXjXn2HMdz8Tie+krjEg8oAtonvIyITZdvpF7XG9xDHwscLr2c+ugQ==", "_location": "/webpack-cli", "_phantomChildren": { "ansi-escapes": "3.2.0", "camelcase": "5.3.1", "cli-cursor": "2.1.0", "cli-width": "2.2.1", "code-point-at": "1.1.0", "decamelize": "1.2.0", "escape-string-regexp": "1.0.5", "figures": "2.0.0", "iconv-lite": "0.4.24", "lodash": "4.17.20", "mute-stream": "0.0.7", "nice-try": "1.0.5", "number-is-nan": "1.0.1", "os-locale": "3.1.0", "p-limit": "2.3.0", "path-key": "2.0.1", "require-directory": "2.1.1", "run-async": "2.4.1", "rxjs": "6.6.7", "semver": "5.5.0", "set-blocking": "2.0.0", "shebang-command": "1.2.0", "supports-color": "5.5.0", "through": "2.3.8", "tmp": "0.0.33", "which": "1.3.1", "which-module": "2.0.1", "y18n": "4.0.3" }, "_requested": { "type": "version", "registry": true, "raw": "webpack-cli@3.1.0", "name": "webpack-cli", "escapedName": "webpack-cli", "rawSpec": "3.1.0", "saveSpec": null, "fetchSpec": "3.1.0" }, "_requiredBy": [ "#DEV:/" ], "_resolved": "https://registry.npmmirror.com/webpack-cli/-/webpack-cli-3.1.0.tgz", "_shasum": "d71a83687dcfeb758fdceeb0fe042f96bcf62994", "_spec": "webpack-cli@3.1.0", "_where": "D:\\wxfiles\\WeChat Files\\wxid_nwzh0d8ul35q22\\FileStorage\\File\\2025-04\\安装教程\\安装教程\\2、其他安装方法【手动安装】\\1、手动安装方法\\前端调试代码\\W72crm_web-master", "bin": { "webpack-cli": "bin/cli.js" }, "bugs": { "url": "https://github.com/webpack/webpack-cli/issues" }, "bundleDependencies": false, "bundlesize": [ { "path": "./packages/migrate/**.js", "maxSize": "1 kB" }, { "path": "./packages/init/**/**.js", "maxSize": "1.6 kB" }, { "path": "./packages/utils/**.js", "maxSize": "5.32 kB" } ], "config": { "commitizen": { "path": "./node_modules/cz-customizable" }, "cz-customizable": { "config": "./.cz-config.js" } }, "dependencies": { "chalk": "^2.4.1", "cross-spawn": "^6.0.5", "enhanced-resolve": "^4.0.0", "global-modules-path": "^2.1.0", "import-local": "^1.0.0", "inquirer": "^6.0.0", "interpret": "^1.1.0", "loader-utils": "^1.1.0", "supports-color": "^5.4.0", "v8-compile-cache": "^2.0.0", "yargs": "^12.0.1" }, "deprecated": false, "description": "CLI for webpack & friends", "devDependencies": { "@commitlint/cli": "^7.0.0", "@commitlint/config-angular": "^7.0.0", "@commitlint/config-lerna-scopes": "^7.0.0", "@commitlint/prompt-cli": "^7.0.0", "@commitlint/travis-cli": "^7.0.0", "@types/jest": "^23.1.1", "@types/node": "^10.5.1", "bundlesize": "^0.17.0", "codecov": "^3.0.2", "commitizen": "^2.10.1", "conventional-changelog-cli": "^2.0.0", "conventional-changelog-lint-config-cz": "^0.3.0", "cz-customizable": "^5.2.0", "eslint": "^5.0.1", "eslint-plugin-node": "^7.0.0", "husky": "^0.14.3", "jest": "^22.4.4", "jest-cli": "^23.0.1", "lerna": "^2.11.0", "lint-staged": "^7.1.2", "nyc": "^12.0.1", "prettier-eslint-cli": "^4.7.1", "rimraf": "^2.6.2", "schema-utils": "^0.4.5", "tslint": "^5.10.0", "typescript": "^2.9.2", "webpack": "^4.8.3", "webpack-dev-server": "^3.1.4" }, "engines": { "node": ">=6.11.5" }, "files": [ "bin" ], "homepage": "https://github.com/webpack/webpack-cli#readme", "jest": { "testEnvironment": "node", "collectCoverage": true, "coverageReporters": [ "json", "html" ] }, "keywords": [ "webpack", "cli", "scaffolding", "module", "bundler" ], "license": "MIT", "lint-staged": { "{packages,bin}/**/!(__testfixtures__)/**.js": [ "eslint --fix", "git add" ] }, "main": "./bin/cli.js", "name": "webpack-cli", "nyc": { "include": [ "bin/**.js", "packages/**/*.js" ], "reporter": [ "lcov" ], "all": true }, "peerDependencies": { "webpack": "^4.x.x" }, "repository": { "type": "git", "url": "git+https://github.com/webpack/webpack-cli.git" }, "scripts": { "appveyor:build": "lerna bootstrap && npm run build", "appveyor:lint": "npm run lint && npm run tslint", "appveyor:test": "npm run test", "bootstrap": "npm run clean:all && npm install && lerna bootstrap", "build": "tsc", "bundlesize": "bundlesize", "changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile CHANGELOG.md --same-file", "clean:all": "rimraf node_modules package-lock.json packages/*/node_modules packages/*/package-lock.json", "format": "prettier-eslint ./bin/*.js ./test/**/*.js ./packages/**/*.js --write", "lint": "eslint \"./bin/*.js\" \"./test/**/*.js\" \"packages/**/!(node_modules)/*.test.js\"", "lint:codeOnly": "eslint \"{bin}/**/!(__testfixtures__)/*.js\" \"{bin}/**.js\"", "precommit": "lint-staged", "pretest": "npm run build && npm run lint && npm run tslint", "reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov", "test": "nyc jest", "travis:integration": "npm run build && npm run test && npm run reportCoverage", "travis:lint": "lerna bootstrap && npm run build && npm run lint && npm run tslint && npm run bundlesize", "tslint": "tslint -c tslint.json \"packages/**/*.ts\"", "watch": "tsc -w" }, "version": "3.1.0" }