UNPKG

json-minimizer-webpack-plugin

Version:
93 lines (92 loc) 2.96 kB
{ "name": "json-minimizer-webpack-plugin", "version": "5.0.0", "description": "json minimizer plugin for Webpack", "license": "MIT", "repository": "webpack-contrib/json-minimizer-webpack-plugin", "author": "webpack Contrib Team", "homepage": "https://github.com/webpack-contrib/json-minimizer-webpack-plugin", "bugs": "https://github.com/webpack-contrib/json-minimizer-webpack-plugin/issues", "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "main": "dist/index.js", "types": "types/index.d.ts", "engines": { "node": ">= 18.12.0" }, "scripts": { "start": "npm run build -- -w", "clean": "del-cli dist types", "prebuild": "npm run clean", "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write", "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files", "build": "npm-run-all -p \"build:**\"", "commitlint": "commitlint --from=master", "security": "npm audit --security", "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different", "lint:js": "eslint --cache .", "lint:spelling": "cspell --no-must-find-files --cache --quiet \"**/*.*\"", "lint:types": "tsc --pretty --noEmit", "lint": "npm-run-all -l -p \"lint:**\"", "fix:js": "npm run lint:js -- --fix", "fix:prettier": "npm run lint:prettier -- --write", "fix": "npm-run-all -l fix:js fix:prettier", "test:only": "cross-env NODE_ENV=test jest", "test:watch": "npm run test:only -- --watch", "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", "pretest": "npm run lint", "test": "npm run test:coverage", "prepare": "husky install && npm run build", "release": "standard-version" }, "files": [ "dist", "types" ], "peerDependencies": { "webpack": "^5.1.0" }, "dependencies": { "schema-utils": "^4.2.0" }, "devDependencies": { "@babel/cli": "^7.23.4", "@babel/core": "^7.23.7", "@babel/preset-env": "^7.23.8", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4", "@types/node": "^20.11.2", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-jest": "^29.7.0", "copy-webpack-plugin": "^9.1.0", "cross-env": "^7.0.3", "cspell": "^8.3.2", "del": "^7.1.0", "del-cli": "^5.1.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "husky": "^8.0.3", "jest": "^29.7.0", "lint-staged": "^15.2.0", "memfs": "^4.6.0", "npm-run-all": "^4.1.5", "prettier": "^3.2.2", "standard-version": "^9.5.0", "typescript": "^5.3.3", "webpack": "^5.89.0" }, "keywords": [ "json", "webpack", "webpack-plugin", "minimize", "minimizer", "minify", "minifier", "optimize", "optimizer" ] }