source: trip-planner-front/node_modules/css-minimizer-webpack-plugin/package.json@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.8 KB
Line 
1{
2 "name": "css-minimizer-webpack-plugin",
3 "version": "3.0.2",
4 "description": "cssnano plugin for Webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/css-minimizer-webpack-plugin",
7 "author": "Loann Neveu",
8 "homepage": "https://github.com/webpack-contrib/css-minimizer-webpack-plugin",
9 "bugs": "https://github.com/webpack-contrib/css-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.0.0"
41 },
42 "peerDependenciesMeta": {
43 "clean-css": {
44 "optional": true
45 },
46 "csso": {
47 "optional": true
48 }
49 },
50 "dependencies": {
51 "cssnano": "^5.0.6",
52 "jest-worker": "^27.0.2",
53 "p-limit": "^3.0.2",
54 "postcss": "^8.3.5",
55 "schema-utils": "^3.0.0",
56 "serialize-javascript": "^6.0.0",
57 "source-map": "^0.6.1"
58 },
59 "devDependencies": {
60 "@babel/cli": "^7.14.5",
61 "@babel/core": "^7.14.6",
62 "@babel/preset-env": "^7.14.7",
63 "@commitlint/cli": "^12.1.4",
64 "@commitlint/config-conventional": "^12.1.4",
65 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
66 "babel-jest": "^27.0.5",
67 "clean-css": "^5.1.2",
68 "copy-webpack-plugin": "^9.0.0",
69 "cross-env": "^7.0.3",
70 "css-loader": "^5.2.6",
71 "cssnano-preset-simple": "^2.0.0",
72 "csso": "^4.2.0",
73 "del": "^6.0.0",
74 "del-cli": "^4.0.0",
75 "eslint": "^7.29.0",
76 "eslint-config-prettier": "^8.3.0",
77 "eslint-plugin-import": "^2.23.4",
78 "husky": "^6.0.0",
79 "jest": "^27.0.5",
80 "lint-staged": "^11.0.0",
81 "memfs": "^3.2.2",
82 "mini-css-extract-plugin": "^1.6.0",
83 "npm-run-all": "^4.1.5",
84 "prettier": "^2.3.1",
85 "sass": "^1.35.1",
86 "sass-loader": "^12.1.0",
87 "standard-version": "^9.3.0",
88 "sugarss": "^4.0.1",
89 "webpack": "^5.40.0"
90 },
91 "keywords": [
92 "cssnano",
93 "css",
94 "webpack",
95 "webpack-plugin",
96 "minimize",
97 "minimizer",
98 "minify",
99 "minifier",
100 "optimize",
101 "optimizer"
102 ]
103}
Note: See TracBrowser for help on using the repository browser.