UNPKG

modify-source-webpack-plugin

Version:

Webpack plugin for modifying modules source

100 lines 2.45 kB
{ "name": "modify-source-webpack-plugin", "version": "4.1.0", "description": "Webpack plugin for modifying modules source", "author": { "name": "Artem Batura", "email": "artembatura.dev@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/artembatura/modify-source-webpack-plugin" }, "bugs": { "url": "https://github.com/artembatura/modify-source-webpack-plugin/issues" }, "license": "MIT", "main": "build/index.js", "typings": "build/index.d.ts", "files": [ "build" ], "scripts": { "build": "tsc -b .", "clean-build": "rimraf build", "prepublishOnly": "run-s clean-build build", "lint-staged": "lint-staged", "test": "jest", "watch": "tsc -b . --watch" }, "devDependencies": { "@types/jest": "^26.0.20", "@types/json-schema": "^7.0.6", "@types/node": "^14.14.21", "@types/rimraf": "^3.0.0", "@types/webpack-v4": "npm:@types/webpack@5.28.0", "@typescript-eslint/eslint-plugin": "^4.13.0", "@typescript-eslint/parser": "^4.13.0", "css-loader": "^5.0.1", "eslint": "^7.18.0", "eslint-config-prettier": "^7.1.0", "eslint-formatter-pretty": "^4.0.0", "eslint-import-resolver-node": "^0.3.4", "eslint-plugin-import": "^2.22.1", "eslint-plugin-import-helpers": "^1.1.0", "eslint-plugin-prettier": "^3.3.1", "husky": "^4.3.8", "jest": "^26.6.3", "lint-staged": "^10.5.3", "modern-normalize": "^1.0.0", "npm-run-all": "^4.1.5", "prettier": "^2.2.1", "rimraf": "^3.0.2", "style-loader": "^2.0.0", "ts-jest": "^26.4.4", "typescript": "^4.1.3", "webpack": "^5.15.0", "webpack-v4": "npm:webpack@webpack-4" }, "dependencies": { "loader-utils-webpack-v4": "npm:loader-utils@^2.0.4", "schema-utils": "^4.0.0" }, "peerDependencies": { "webpack": "^4.37.0 || ^5.0.0" }, "husky": { "hooks": { "pre-commit": "yarn lint-staged" } }, "lint-staged": { "*.{js,ts,jsx,tsx,md,json}": [ "prettier --write" ], "*.{js,ts,jsx,tsx}": [ "eslint --format=pretty --fix" ] }, "keywords": [ "webpack", "plugin", "hooks", "module", "file", "source", "modify", "edit", "loader", "compilation", "dependency", "value", "rebuild", "parse", "re-parse", "rebuildModule", "addDependency", "buildModule" ], "packageManager": "yarn@3.2.4" }