-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
72 lines (72 loc) · 1.87 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
67
68
69
70
71
72
{
"name": "filemanager-webpack-plugin",
"version": "8.0.0",
"description": "Webpack plugin to copy, archive (.zip), move, delete files and directories before and after builds",
"author": "gregnb",
"license": "MIT",
"repository": "https://github.com/gregnb/filemanager-webpack-plugin.git",
"bugs": "https://github.com/gregnb/filemanager-webpack-plugin/issues",
"homepage": "https://github.com/gregnb/filemanager-webpack-plugin#readme",
"type": "module",
"main": "./dist/index.cjs",
"types": "types.d.ts",
"exports": {
"types": "./types.d.ts",
"require": "./dist/index.cjs",
"import": "./src/index.js",
"default": "./src/index.js"
},
"engines": {
"node": ">=16.0.0"
},
"contributors": [
"sibiraj-s"
],
"keywords": [
"webpack",
"webpack-copy-plugin",
"webpack-archive-plugin",
"filemanager-plugin"
],
"files": [
"dist",
"src",
"types.d.ts"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "ava",
"prettier": "prettier . --write --ignore-path .gitignore",
"prepublishOnly": "npm run build && npm run test",
"prepare": "is-ci || husky install"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"@types/archiver": "^5.3.2",
"archiver": "^5.3.1",
"del": "^6.1.1",
"fast-glob": "^3.3.0",
"fs-extra": "^10.1.0",
"is-glob": "^4.0.3",
"normalize-path": "^3.0.0",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"ava": "^5.3.1",
"commitlint-config-non-conventional": "^1.0.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jszip": "^3.10.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^3.26.0",
"webpack": "^5.88.1"
}
}