-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
73
74
75
76
77
78
{
"name": "filemanager-plugin",
"version": "2.9.0",
"description": "Filemanager-plugin allows you to delete, zip/unzip(.zip/.tar/.tar.gz), move, rename, copy files or directories before and after webpack/rollup builds. Also, you can customize the lifecycle of webpack or rollup during building.",
"main": "lib/index.js",
"files": [
"lib",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xianweics/filemanager-plugin.git"
},
"keywords": [
"webpack",
"rollup",
"vite",
"file manager",
"nodejs",
"glob"
],
"engines": {
"node": ">= 14",
"webpack": ">= 4.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xianweics/filemanager-plugin/issues"
},
"homepage": "https://github.com/xianweics/filemanager-plugin#readme",
"scripts": {
"install:source": "npm ci",
"install:demo-webpack": "cd example/webpack && npm i",
"install:demo-rollup": "cd example/rollup && npm i",
"install:demo-vite": "cd example/vite-demo && npm i",
"dev:install": "npm-run-all -p install:*",
"source:clean": "rimraf lib",
"source:build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"build": "npm-run-all -s source:clean source:build",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:watchAll": "npm test -- --watchAll",
"test:coverage": "npm run test -- --collectCoverage",
"doc": "jsdoc -c conf.json",
"format:lint": "eslint 'src/**/*.js'",
"format:fix": "eslint --fix 'src/**/*.js'"
},
"pre-commit": [
"format:lint"
],
"dependencies": {
"colors": "^1.4.0",
"compressing": "^1.8.0",
"fs-extra": "^11.1.0",
"glob": "^9.2.1",
"glob-parent": "^6.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-eslint": "^9.0.3",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-friendly-formatter": "^4.0.1",
"jest": "^29.4.3",
"jsdoc": "^4.0.2",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"rimraf": "^4.3.0",
"rollup": "^3.18.0",
"tui-jsdoc-template": "^1.2.2",
"webpack": "^5.75.0"
}
}