UNPKG

unused-files-webpack-plugin

Version:

Glob all files that are not compiled by webpack under webpack's context

80 lines (79 loc) 2.29 kB
{ "name": "unused-files-webpack-plugin", "version": "3.4.0", "description": "Glob all files that are not compiled by webpack under webpack's context", "license": "MIT", "author": { "name": "tomchentw", "email": "developer@tomchentw.com", "url": "https://github.com/tomchentw" }, "repository": { "type": "git", "url": "https://github.com/tomchentw/unused-files-webpack-plugin" }, "bugs": { "url": "https://github.com/tomchentw/unused-files-webpack-plugin/issues" }, "homepage": "https://github.com/tomchentw/unused-files-webpack-plugin/", "main": "lib/index.js", "files": ["lib/", "src/", "CHANGELOG.md"], "keywords": [ "unused", "redundancy", "files", "require", "webpack", "webpack-plugin" ], "scripts": { "precommit": "lint-staged", "test": "jest", "prebuild:lib": "rimraf lib", "build:lib": "babel-multi-env --multi-versions 8.0.0,6.0.0,4.0.0,0.12.0,0.10.0 --out-dir lib 'src/**/*.js'", "precommit:lib": "npm run build:lib", "commit:lib": "git add -A && git commit -m 'chore(lib): compile from src with `babel-multi-env`'", "prerelease": "npm run commit:lib", "release": "standard-version -m 'chore(release): %s \n\n* CHANGELOG: https://github.com/tomchentw/unused-files-webpack-plugin/blob/v%s/CHANGELOG.md'" }, "lint-staged": { "*.{js,jsx,json,css}": ["prettier --write", "git add"] }, "babel": { "plugins": ["transform-object-rest-spread"], "env": { "test": { "presets": [["env"]] } } }, "jest": { "testPathIgnorePatterns": ["\\d+\\.\\d+\\.\\d+"] }, "dependencies": { "babel-runtime": "^7.0.0-beta.3", "glob-all": "^3.1.0", "semver": "^5.5.0", "util.promisify": "^1.0.0", "warning": "^3.0.0" }, "devDependencies": { "babel-core": "^7.0.0-beta.3", "babel-multi-env": "^0.4.0", "babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3", "babel-plugin-transform-runtime": "^7.0.0-beta.3", "babel-preset-env": "^7.0.0-beta.3", "husky": "^0.14.3", "jest": "^21.3.0-beta.2", "lint-staged": "^7.0.0", "memory-fs": "^0.4.1", "prettier": "^1.11.1", "rimraf": "^2.6.2", "standard-version": "^4.3.0", "webpack": "^3.8.1" } }