- 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/mini-css-extract-plugin/package.json
rceaed42 r59329aa 1 1 { 2 "name": "mini-css-extract-plugin", 3 "version": "2.2.1", 4 "description": "extracts CSS into separate files", 5 "license": "MIT", 6 "repository": "webpack-contrib/mini-css-extract-plugin", 7 "author": "Tobias Koppers @sokra", 8 "homepage": "https://github.com/webpack-contrib/mini-css-extract-plugin", 9 "bugs": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues", 10 "funding": { 11 "type": "opencollective", 12 "url": "https://opencollective.com/webpack" 2 "_args": [ 3 [ 4 "mini-css-extract-plugin@2.2.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "mini-css-extract-plugin@2.2.1", 10 "_id": "mini-css-extract-plugin@2.2.1", 11 "_inBundle": false, 12 "_integrity": "sha512-A0GBXpz8WIPgh2HfASJ0EeY8grd2dGxmC4R8uTujFJXZY7zFy0nvYSYW6SKCLKlz7y45BdHONfaxZQMIZpeF/w==", 13 "_location": "/mini-css-extract-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": "mini-css-extract-plugin@2.2.1", 24 "name": "mini-css-extract-plugin", 25 "escapedName": "mini-css-extract-plugin", 26 "rawSpec": "2.2.1", 27 "saveSpec": null, 28 "fetchSpec": "2.2.1" 17 29 }, 18 "scripts": { 19 "start": "npm run build -- -w", 20 "prebuild": "npm run clean", 21 "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files", 22 "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js", 23 "clean": "del-cli dist", 24 "commitlint": "commitlint --from=master", 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 "prepare": "husky install && npm run build", 29 "release": "standard-version", 30 "security": "npm audit --production", 31 "test:only": "cross-env NODE_ENV=test jest", 32 "test:only:experimental": "EXPERIMENTAL_USE_IMPORT_MODULE=true cross-env NODE_ENV=test jest", 33 "test:watch": "npm run test:only -- --watch", 34 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 35 "test:manual": "npm run build && webpack serve ./test/manual/src/index.js --open --config ./test/manual/webpack.config.js", 36 "pretest": "npm run lint", 37 "test": "cross-env NODE_ENV=test npm run test:coverage" 30 "_requiredBy": [ 31 "/@angular-devkit/build-angular" 32 ], 33 "_resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.2.1.tgz", 34 "_spec": "2.2.1", 35 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 36 "author": { 37 "name": "Tobias Koppers @sokra" 38 38 }, 39 "files": [ 40 "dist" 41 ], 42 "peerDependencies": { 43 "webpack": "^5.0.0" 39 "bugs": { 40 "url": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues" 44 41 }, 45 42 "dependencies": { 46 43 "schema-utils": "^3.1.0" 47 44 }, 45 "description": "extracts CSS into separate files", 48 46 "devDependencies": { 49 47 "@babel/cli": "^7.14.5", … … 77 75 "webpack-dev-server": "^4.0.0" 78 76 }, 77 "engines": { 78 "node": ">= 12.13.0" 79 }, 80 "files": [ 81 "dist" 82 ], 83 "funding": { 84 "type": "opencollective", 85 "url": "https://opencollective.com/webpack" 86 }, 87 "homepage": "https://github.com/webpack-contrib/mini-css-extract-plugin", 79 88 "keywords": [ 80 89 "webpack", … … 82 91 "extract", 83 92 "hmr" 84 ] 93 ], 94 "license": "MIT", 95 "main": "dist/cjs.js", 96 "name": "mini-css-extract-plugin", 97 "peerDependencies": { 98 "webpack": "^5.0.0" 99 }, 100 "repository": { 101 "type": "git", 102 "url": "git+https://github.com/webpack-contrib/mini-css-extract-plugin.git" 103 }, 104 "scripts": { 105 "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files", 106 "clean": "del-cli dist", 107 "commitlint": "commitlint --from=master", 108 "lint": "npm-run-all -l -p \"lint:**\"", 109 "lint:js": "eslint --cache .", 110 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different", 111 "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js", 112 "prebuild": "npm run clean", 113 "prepare": "husky install && npm run build", 114 "pretest": "npm run lint", 115 "release": "standard-version", 116 "security": "npm audit --production", 117 "start": "npm run build -- -w", 118 "test": "cross-env NODE_ENV=test npm run test:coverage", 119 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage", 120 "test:manual": "npm run build && webpack serve ./test/manual/src/index.js --open --config ./test/manual/webpack.config.js", 121 "test:only": "cross-env NODE_ENV=test jest", 122 "test:only:experimental": "EXPERIMENTAL_USE_IMPORT_MODULE=true cross-env NODE_ENV=test jest", 123 "test:watch": "npm run test:only -- --watch" 124 }, 125 "version": "2.2.1" 85 126 }
Note:
See TracChangeset
for help on using the changeset viewer.