- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/css-minimizer-webpack-plugin/package.json
rceaed42 r59329aa 1 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" 2 "_args": [ 3 [ 4 "css-minimizer-webpack-plugin@3.0.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "css-minimizer-webpack-plugin@3.0.2", 10 "_id": "css-minimizer-webpack-plugin@3.0.2", 11 "_inBundle": false, 12 "_integrity": "sha512-B3I5e17RwvKPJwsxjjWcdgpU/zqylzK1bPVghcmpFHRL48DXiBgrtqz1BJsn68+t/zzaLp9kYAaEDvQ7GyanFQ==", 13 "_location": "/css-minimizer-webpack-plugin", 14 "_phantomChildren": { 15 "@types/json-schema": "7.0.9", 16 "fast-deep-equal": "3.1.3", 17 "fast-json-stable-stringify": "2.1.0", 18 "uri-js": "4.4.1" 13 19 }, 14 "main": "dist/cjs.js", 15 "engines": { 16 "node": ">= 12.13.0" 20 "_requested": { 21 "type": "version", 22 "registry": true, 23 "raw": "css-minimizer-webpack-plugin@3.0.2", 24 "name": "css-minimizer-webpack-plugin", 25 "escapedName": "css-minimizer-webpack-plugin", 26 "rawSpec": "3.0.2", 27 "saveSpec": null, 28 "fetchSpec": "3.0.2" 17 29 }, 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" 30 "_requiredBy": [ 31 "/@angular-devkit/build-angular" 32 ], 33 "_resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.2.tgz", 34 "_spec": "3.0.2", 35 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 36 "author": { 37 "name": "Loann Neveu" 35 38 }, 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 } 39 "bugs": { 40 "url": "https://github.com/webpack-contrib/css-minimizer-webpack-plugin/issues" 49 41 }, 50 42 "dependencies": { … … 57 49 "source-map": "^0.6.1" 58 50 }, 51 "description": "cssnano plugin for Webpack", 59 52 "devDependencies": { 60 53 "@babel/cli": "^7.14.5", … … 89 82 "webpack": "^5.40.0" 90 83 }, 84 "engines": { 85 "node": ">= 12.13.0" 86 }, 87 "files": [ 88 "dist" 89 ], 90 "funding": { 91 "type": "opencollective", 92 "url": "https://opencollective.com/webpack" 93 }, 94 "homepage": "https://github.com/webpack-contrib/css-minimizer-webpack-plugin", 91 95 "keywords": [ 92 96 "cssnano", … … 100 104 "optimize", 101 105 "optimizer" 102 ] 106 ], 107 "license": "MIT", 108 "main": "dist/cjs.js", 109 "name": "css-minimizer-webpack-plugin", 110 "peerDependencies": { 111 "webpack": "^5.0.0" 112 }, 113 "peerDependenciesMeta": { 114 "clean-css": { 115 "optional": true 116 }, 117 "csso": { 118 "optional": true 119 } 120 }, 121 "repository": { 122 "type": "git", 123 "url": "git+https://github.com/webpack-contrib/css-minimizer-webpack-plugin.git" 124 }, 125 "scripts": { 126 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files", 127 "clean": "del-cli dist", 128 "commitlint": "commitlint --from=master", 129 "lint": "npm-run-all -l -p \"lint:**\"", 130 "lint:js": "eslint --cache .", 131 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different", 132 "prebuild": "npm run clean", 133 "prepare": "husky install && npm run build", 134 "pretest": "npm run lint", 135 "release": "standard-version", 136 "security": "npm audit", 137 "start": "npm run build -- -w", 138 "test": "npm run test:coverage", 139 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 140 "test:only": "cross-env NODE_ENV=test jest", 141 "test:watch": "npm run test:only -- --watch" 142 }, 143 "version": "3.0.2" 103 144 }
Note:
See TracChangeset
for help on using the changeset viewer.