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"
|
---|
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": "^3.1.0"
|
---|
47 | },
|
---|
48 | "devDependencies": {
|
---|
49 | "@babel/cli": "^7.14.5",
|
---|
50 | "@babel/core": "^7.14.6",
|
---|
51 | "@babel/preset-env": "^7.14.9",
|
---|
52 | "@commitlint/cli": "^13.1.0",
|
---|
53 | "@commitlint/config-conventional": "^13.1.0",
|
---|
54 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
---|
55 | "babel-eslint": "^10.1.0",
|
---|
56 | "babel-jest": "^27.0.6",
|
---|
57 | "bootstrap": "^4.6.0",
|
---|
58 | "cross-env": "^7.0.3",
|
---|
59 | "css-loader": "^5.2.6",
|
---|
60 | "del": "^6.0.0",
|
---|
61 | "del-cli": "^4.0.0",
|
---|
62 | "es-check": "^6.0.0",
|
---|
63 | "eslint": "^7.30.0",
|
---|
64 | "eslint-config-prettier": "^8.1.0",
|
---|
65 | "eslint-plugin-import": "^2.23.4",
|
---|
66 | "file-loader": "^6.2.0",
|
---|
67 | "husky": "^7.0.0",
|
---|
68 | "jest": "^27.0.6",
|
---|
69 | "jsdom": "^17.0.0",
|
---|
70 | "lint-staged": "^11.1.1",
|
---|
71 | "memfs": "^3.0.2",
|
---|
72 | "npm-run-all": "^4.1.5",
|
---|
73 | "prettier": "^2.3.2",
|
---|
74 | "standard-version": "^9.3.0",
|
---|
75 | "webpack": "^5.48.0",
|
---|
76 | "webpack-cli": "^4.7.2",
|
---|
77 | "webpack-dev-server": "^4.0.0"
|
---|
78 | },
|
---|
79 | "keywords": [
|
---|
80 | "webpack",
|
---|
81 | "css",
|
---|
82 | "extract",
|
---|
83 | "hmr"
|
---|
84 | ]
|
---|
85 | }
|
---|