1 | {
|
---|
2 | "name": "copy-webpack-plugin",
|
---|
3 | "version": "9.0.1",
|
---|
4 | "description": "Copy files && directories with webpack",
|
---|
5 | "license": "MIT",
|
---|
6 | "repository": "webpack-contrib/copy-webpack-plugin",
|
---|
7 | "author": "Len Boyette",
|
---|
8 | "homepage": "https://github.com/webpack-contrib/copy-webpack-plugin",
|
---|
9 | "bugs": "https://github.com/webpack-contrib/copy-webpack-plugin/issues",
|
---|
10 | "funding": {
|
---|
11 | "type": "opencollective",
|
---|
12 | "url": "https://opencollective.com/webpack"
|
---|
13 | },
|
---|
14 | "main": "dist/cjs.js",
|
---|
15 | "engines": {
|
---|
16 | "node": ">= 12.13.0"
|
---|
17 | },
|
---|
18 | "scripts": {
|
---|
19 | "start": "npm run build -- -w",
|
---|
20 | "clean": "del-cli dist",
|
---|
21 | "prebuild": "npm run clean",
|
---|
22 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
---|
23 | "commitlint": "commitlint --from=master",
|
---|
24 | "security": "npm audit --production",
|
---|
25 | "lint:prettier": "prettier --list-different .",
|
---|
26 | "lint:js": "eslint --cache .",
|
---|
27 | "lint": "npm-run-all -l -p \"lint:**\"",
|
---|
28 | "test:only": "cross-env NODE_ENV=test jest",
|
---|
29 | "test:watch": "npm run test:only -- --watch",
|
---|
30 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
---|
31 | "pretest": "npm run lint",
|
---|
32 | "test": "npm run test:coverage",
|
---|
33 | "prepare": "husky install && npm run build",
|
---|
34 | "release": "standard-version"
|
---|
35 | },
|
---|
36 | "files": [
|
---|
37 | "dist"
|
---|
38 | ],
|
---|
39 | "peerDependencies": {
|
---|
40 | "webpack": "^5.1.0"
|
---|
41 | },
|
---|
42 | "dependencies": {
|
---|
43 | "fast-glob": "^3.2.5",
|
---|
44 | "glob-parent": "^6.0.0",
|
---|
45 | "globby": "^11.0.3",
|
---|
46 | "normalize-path": "^3.0.0",
|
---|
47 | "p-limit": "^3.1.0",
|
---|
48 | "schema-utils": "^3.0.0",
|
---|
49 | "serialize-javascript": "^6.0.0"
|
---|
50 | },
|
---|
51 | "devDependencies": {
|
---|
52 | "@babel/cli": "^7.14.5",
|
---|
53 | "@babel/core": "^7.14.6",
|
---|
54 | "@babel/preset-env": "^7.14.7",
|
---|
55 | "@commitlint/cli": "^12.1.4",
|
---|
56 | "@commitlint/config-conventional": "^12.1.4",
|
---|
57 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
---|
58 | "babel-jest": "^27.0.5",
|
---|
59 | "cross-env": "^7.0.3",
|
---|
60 | "del": "^6.0.0",
|
---|
61 | "del-cli": "^4.0.0",
|
---|
62 | "eslint": "^7.29.0",
|
---|
63 | "eslint-config-prettier": "^8.3.0",
|
---|
64 | "eslint-plugin-import": "^2.23.4",
|
---|
65 | "file-loader": "^6.2.0",
|
---|
66 | "husky": "^6.0.0",
|
---|
67 | "is-gzip": "^2.0.0",
|
---|
68 | "jest": "^27.0.5",
|
---|
69 | "lint-staged": "^11.0.0",
|
---|
70 | "memfs": "^3.2.2",
|
---|
71 | "mkdirp": "^1.0.4",
|
---|
72 | "npm-run-all": "^4.1.5",
|
---|
73 | "prettier": "^2.3.1",
|
---|
74 | "standard-version": "^9.3.0",
|
---|
75 | "webpack": "^5.40.0"
|
---|
76 | },
|
---|
77 | "keywords": [
|
---|
78 | "webpack",
|
---|
79 | "plugin",
|
---|
80 | "transfer",
|
---|
81 | "move",
|
---|
82 | "copy"
|
---|
83 | ]
|
---|
84 | }
|
---|