UNPKG

2.38 kBJSONView Raw
1{
2 "name": "json-minimizer-webpack-plugin",
3 "version": "3.0.0",
4 "description": "json minimizer plugin for Webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/json-minimizer-webpack-plugin",
7 "author": "webpack Contrib Team",
8 "homepage": "https://github.com/webpack-contrib/json-minimizer-webpack-plugin",
9 "bugs": "https://github.com/webpack-contrib/json-minimizer-webpack-plugin/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 12.13.0"
17 },
18 "scripts": {
19 "start": "npm run build -- -w",
20 "clean": "del-cli dist",
21 "prebuild": "npm run clean",
22 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
23 "commitlint": "commitlint --from=master",
24 "security": "npm audit",
25 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
26 "lint:js": "eslint --cache .",
27 "lint": "npm-run-all -l -p \"lint:**\"",
28 "test:only": "cross-env NODE_ENV=test jest",
29 "test:watch": "npm run test:only -- --watch",
30 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
31 "pretest": "npm run lint",
32 "test": "npm run test:coverage",
33 "prepare": "husky install && npm run build",
34 "release": "standard-version"
35 },
36 "files": [
37 "dist"
38 ],
39 "peerDependencies": {
40 "webpack": "^5.1.0"
41 },
42 "dependencies": {
43 "schema-utils": "^3.0.0"
44 },
45 "devDependencies": {
46 "@babel/cli": "^7.14.3",
47 "@babel/core": "^7.14.3",
48 "@babel/preset-env": "^7.14.2",
49 "@commitlint/cli": "^12.1.4",
50 "@commitlint/config-conventional": "^12.1.4",
51 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
52 "babel-jest": "^26.6.3",
53 "copy-webpack-plugin": "^8.1.1",
54 "cross-env": "^7.0.3",
55 "del": "^6.0.0",
56 "del-cli": "^3.0.1",
57 "eslint": "^7.26.0",
58 "eslint-config-prettier": "^8.3.0",
59 "eslint-plugin-import": "^2.23.2",
60 "husky": "^6.0.0",
61 "jest": "^26.6.3",
62 "lint-staged": "^11.0.0",
63 "memfs": "^3.2.2",
64 "npm-run-all": "^4.1.5",
65 "prettier": "^2.3.0",
66 "standard-version": "^9.3.0",
67 "webpack": "^5.37.0"
68 },
69 "keywords": [
70 "json",
71 "webpack",
72 "webpack-plugin",
73 "minimize",
74 "minimizer",
75 "minify",
76 "minifier",
77 "optimize",
78 "optimizer"
79 ]
80}