UNPKG

2.87 kBJSONView Raw
1{
2 "name": "mini-css-extract-plugin",
3 "version": "2.4.6",
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"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 12.13.0"
17 },
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"
38 },
39 "files": [
40 "dist"
41 ],
42 "peerDependencies": {
43 "webpack": "^5.0.0"
44 },
45 "dependencies": {
46 "schema-utils": "^4.0.0"
47 },
48 "devDependencies": {
49 "@babel/cli": "^7.16.7",
50 "@babel/core": "^7.16.7",
51 "@babel/eslint-parser": "^7.16.0",
52 "@babel/preset-env": "^7.16.7",
53 "@commitlint/cli": "^15.0.0",
54 "@commitlint/config-conventional": "^15.0.0",
55 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
56 "babel-jest": "^27.0.6",
57 "bootstrap": "^4.6.0",
58 "cross-env": "^7.0.3",
59 "css-loader": "^6.2.0",
60 "del": "^6.0.0",
61 "del-cli": "^4.0.0",
62 "es-check": "^6.0.0",
63 "eslint": "^8.6.0",
64 "eslint-config-prettier": "^8.1.0",
65 "eslint-plugin-import": "^2.25.4",
66 "file-loader": "^6.2.0",
67 "husky": "^7.0.0",
68 "jest": "^27.0.6",
69 "jsdom": "^19.0.0",
70 "lint-staged": "^12.1.5",
71 "memfs": "^3.4.1",
72 "npm-run-all": "^4.1.5",
73 "prettier": "^2.3.2",
74 "sass": "^1.45.2",
75 "sass-loader": "^12.1.0",
76 "standard-version": "^9.3.0",
77 "webpack": "^5.58.1",
78 "webpack-cli": "^4.7.2",
79 "webpack-dev-server": "^4.7.2"
80 },
81 "keywords": [
82 "webpack",
83 "css",
84 "extract",
85 "hmr"
86 ]
87}