UNPKG

copy-webpack-plugin

Version:
96 lines (95 loc) 3.06 kB
{ "name": "copy-webpack-plugin", "version": "14.0.0", "description": "Copy files && directories with webpack", "keywords": [ "webpack", "plugin", "transfer", "move", "copy" ], "homepage": "https://github.com/webpack/copy-webpack-plugin", "bugs": "https://github.com/webpack/copy-webpack-plugin/issues", "repository": "webpack/copy-webpack-plugin", "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "license": "MIT", "author": "Len Boyette", "main": "dist/index.js", "types": "types/index.d.ts", "files": [ "dist", "types" ], "scripts": { "start": "npm run build -- -w", "clean": "del-cli dist types", "prebuild": "npm run clean", "build:types": "tsc --declaration --emitDeclarationOnly --outDir types --rootDir src && prettier \"types/**/*.ts\" --write", "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", "build": "npm-run-all -p \"build:**\"", "commitlint": "commitlint --from=main", "security": "npm audit --production", "lint:prettier": "prettier --cache --list-different .", "lint:code": "eslint --cache .", "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"", "lint:types": "tsc --pretty --noEmit", "lint": "npm-run-all -l -p \"lint:**\"", "fix:code": "npm run lint:code -- --fix", "fmt": "npm run lint:prettier -- --write", "fix": "npm run fix:code && npm run fmt", "test:only": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "npm run test:only -- --watch", "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", "pretest": "npm run lint", "test": "npm run test:coverage", "prepare": "husky && npm run build", "release": "standard-version" }, "dependencies": { "glob-parent": "^6.0.1", "normalize-path": "^3.0.0", "schema-utils": "^4.2.0", "serialize-javascript": "^7.0.3", "tinyglobby": "^0.2.12" }, "devDependencies": { "@babel/cli": "^7.24.6", "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@commitlint/cli": "^20.3.1", "@commitlint/config-conventional": "^20.3.1", "@types/glob-parent": "^5.1.3", "@types/node": "^22.13.5", "@types/normalize-path": "^3.0.2", "@types/picomatch": "^4.0.2", "@types/serialize-javascript": "^5.0.4", "babel-jest": "^30.0.0", "cross-env": "^7.0.3", "cspell": "^9.6.2", "del-cli": "^7.0.0", "eslint": "^9.31.0", "eslint-config-webpack": "^4.4.2", "eslint-plugin-jest": "^29.0.1", "file-loader": "^6.2.0", "husky": "^9.1.4", "is-gzip": "^2.0.0", "jest": "^30.0.0", "lint-staged": "^16.2.7", "memfs": "^4.11.1", "npm-run-all": "^4.1.5", "prettier": "^3.2.5", "standard-version": "^9.3.1", "typescript": "^5.4.5", "webpack": "^5.91.0" }, "peerDependencies": { "webpack": "^5.1.0" }, "engines": { "node": ">= 20.9.0" } }