-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "copy-webpack",
"version": "4.2.0",
"description": "A simple `copy-webpack-plugin`",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"copy",
"glob",
"plugin",
"webpack"
],
"homepage": "https://github.com/best-shot/copy-webpack",
"repository": {
"type": "git",
"url": "https://github.com/best-shot/copy-webpack.git"
},
"bugs": {
"url": "https://github.com/best-shot/copy-webpack/issues"
},
"main": "index.cjs",
"files": [
"lib"
],
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"snapshot": "ava --fail-fast -u -w",
"test": "ava --fail-fast"
},
"dependencies": {
"copy-webpack-plugin": "^12.0.2",
"deepmerge": "^4.3.1",
"schema-utils": "^4.2.0"
},
"devDependencies": {
"@bring-it/npm": "^0.5.2",
"@nice-move/cli": "^0.11.11",
"@nice-move/eslint-config-base": "^0.11.7",
"@nice-move/prettier-config": "^0.11.3",
"ava": "^6.1.3",
"eslint": "^8.57.0",
"eslint-plugin-ava": "^14.0.0",
"garou": "^0.7.4",
"prettier": "^3.2.5"
},
"peerDependencies": {
"webpack": "^5.90.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0 || ^18.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"prettier": "@nice-move/prettier-config"
}