filemanager-plugin
Version:
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.
79 lines (78 loc) • 2.33 kB
JSON
{
"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"
}
}