1 | {
|
2 | "name": "mini-css-extract-plugin",
|
3 | "version": "1.3.8",
|
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": ">= 10.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": "npm run build",
|
29 | "release": "standard-version",
|
30 | "security": "npm audit",
|
31 | "test:only": "cross-env NODE_ENV=test jest",
|
32 | "test:watch": "npm run test:only -- --watch",
|
33 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
34 | "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
|
35 | "pretest": "npm run lint",
|
36 | "test": "cross-env NODE_ENV=test npm run test:coverage",
|
37 | "defaults": "webpack-defaults"
|
38 | },
|
39 | "files": [
|
40 | "dist"
|
41 | ],
|
42 | "peerDependencies": {
|
43 | "webpack": "^4.4.0 || ^5.0.0"
|
44 | },
|
45 | "dependencies": {
|
46 | "loader-utils": "^2.0.0",
|
47 | "schema-utils": "^3.0.0",
|
48 | "webpack-sources": "^1.1.0"
|
49 | },
|
50 | "devDependencies": {
|
51 | "@babel/cli": "^7.12.16",
|
52 | "@babel/core": "^7.12.16",
|
53 | "@babel/preset-env": "^7.12.16",
|
54 | "@commitlint/cli": "^11.0.0",
|
55 | "@commitlint/config-conventional": "^11.0.0",
|
56 | "@webpack-contrib/defaults": "^6.3.0",
|
57 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
58 | "babel-eslint": "^10.1.0",
|
59 | "babel-jest": "^26.6.3",
|
60 | "bootstrap": "^4.6.0",
|
61 | "cross-env": "^7.0.3",
|
62 | "css-loader": "^5.0.2",
|
63 | "del": "^6.0.0",
|
64 | "del-cli": "^3.0.1",
|
65 | "es-check": "^5.2.0",
|
66 | "eslint": "^7.20.0",
|
67 | "eslint-config-prettier": "^7.2.0",
|
68 | "eslint-plugin-import": "^2.22.1",
|
69 | "file-loader": "^6.2.0",
|
70 | "husky": "^4.3.8",
|
71 | "jest": "^26.6.3",
|
72 | "jsdom": "^16.4.0",
|
73 | "lint-staged": "^10.5.4",
|
74 | "memfs": "^3.0.2",
|
75 | "npm-run-all": "^4.1.5",
|
76 | "prettier": "^2.2.1",
|
77 | "standard-version": "^9.1.0",
|
78 | "webpack": "^5.22.0",
|
79 | "webpack-cli": "^4.5.0",
|
80 | "webpack-dev-server": "^3.7.2"
|
81 | },
|
82 | "keywords": [
|
83 | "webpack",
|
84 | "css",
|
85 | "extract",
|
86 | "hmr"
|
87 | ]
|
88 | }
|