UNPKG

extract-plugin

Version:

Extract any files from webpack build.

81 lines (80 loc) 2.18 kB
{ "name": "extract-plugin", "version": "0.3.0", "description": "Extract any files from webpack build.", "license": "MIT", "author": "Matthias Giger", "contributors": [ { "name": "Tobias Koppers @sokra (mini-css-extract-plugin)" } ], "repository": "github:tobua/extract-plugin", "main": "dist/cjs.js", "scripts": { "start": "npm run build -- -w", "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", "clean": "del-cli dist", "lint": "eslint --cache --fix src test", "lint-staged": "lint-staged", "prebuild": "npm run clean", "prepublish": "npm run build", "test": "jest", "test:watch": "jest --watch", "test:update": "jest -u", "test:manual": "webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js", "defaults": "webpack-defaults" }, "files": [ "dist" ], "peerDependencies": { "webpack": "^5.5.0" }, "dependencies": { "@webpack-contrib/schema-utils": "^1.0.0-beta.0", "loader-utils": "^2.0.0", "webpack-sources": "^2.2.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@babel/plugin-proposal-object-rest-spread": "^7.12.1", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.12.1", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-jest": "^26.6.3", "cross-env": "^7.0.2", "css-loader": "^5.0.1", "del": "^6.0.0", "del-cli": "^3.0.1", "eslint": "^7.13.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.1.4", "file-loader": "^6.2.0", "globby": "^11.0.1", "jest": "^26.6.3", "lint-staged": "^10.5.1", "lodash.get": "^4.4.2", "memory-fs": "^0.5.0", "mini-css-extract-plugin": "^1.3.1", "prettier": "^2.1.2", "raw-loader": "^4.0.2", "rimraf": "^3.0.2", "webpack": "^4.17.2", "webpack-cli": "^4.2.0", "webpack-defaults": "^4.0.0", "webpack-dev-server": "^3.11.0" }, "keywords": [ "webpack", "extract", "plugin" ], "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }