You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
3.1 KiB
94 lines
3.1 KiB
3 years ago
|
{
|
||
|
"name": "mini-css-extract-plugin",
|
||
|
"version": "2.6.0",
|
||
|
"description": "extracts CSS into separate files",
|
||
|
"license": "MIT",
|
||
|
"repository": "webpack-contrib/mini-css-extract-plugin",
|
||
|
"author": "Tobias Koppers @sokra",
|
||
|
"homepage": "https://github.com/webpack-contrib/mini-css-extract-plugin",
|
||
|
"bugs": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues",
|
||
|
"funding": {
|
||
|
"type": "opencollective",
|
||
|
"url": "https://opencollective.com/webpack"
|
||
|
},
|
||
|
"main": "dist/index.js",
|
||
|
"types": "types/index.d.ts",
|
||
|
"engines": {
|
||
|
"node": ">= 12.13.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"start": "npm run build -- -w",
|
||
|
"prebuild": "npm run clean",
|
||
|
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
|
||
|
"build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
||
|
"build": "npm-run-all -p \"build:**\"",
|
||
|
"postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js",
|
||
|
"clean": "del-cli dist",
|
||
|
"commitlint": "commitlint --from=master",
|
||
|
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
||
|
"lint:js": "eslint --cache .",
|
||
|
"lint:types": "tsc --pretty --noEmit",
|
||
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
||
|
"prepare": "husky install && npm run build",
|
||
|
"release": "standard-version",
|
||
|
"security": "npm audit --production",
|
||
|
"test:only": "cross-env NODE_ENV=test jest",
|
||
|
"test:only:experimental": "EXPERIMENTAL_USE_IMPORT_MODULE=true cross-env NODE_ENV=test jest",
|
||
|
"test:watch": "npm run test:only -- --watch",
|
||
|
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
||
|
"test:manual": "npm run build && webpack serve ./test/manual/src/index.js --open --config ./test/manual/webpack.config.js",
|
||
|
"pretest": "npm run lint",
|
||
|
"test": "cross-env NODE_ENV=test npm run test:coverage"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"types"
|
||
|
],
|
||
|
"peerDependencies": {
|
||
|
"webpack": "^5.0.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"schema-utils": "^4.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/cli": "^7.17.0",
|
||
|
"@babel/core": "^7.17.0",
|
||
|
"@babel/eslint-parser": "^7.17.0",
|
||
|
"@babel/preset-env": "^7.16.11",
|
||
|
"@commitlint/cli": "^15.0.0",
|
||
|
"@commitlint/config-conventional": "^15.0.0",
|
||
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
||
|
"babel-jest": "^27.5.0",
|
||
|
"bootstrap": "^4.6.0",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"css-loader": "^6.6.0",
|
||
|
"del": "^6.0.0",
|
||
|
"del-cli": "^4.0.0",
|
||
|
"es-check": "^6.2.1",
|
||
|
"eslint": "^8.8.0",
|
||
|
"eslint-config-prettier": "^8.1.0",
|
||
|
"eslint-plugin-import": "^2.25.4",
|
||
|
"file-loader": "^6.2.0",
|
||
|
"husky": "^7.0.0",
|
||
|
"jest": "^27.5.0",
|
||
|
"jsdom": "^19.0.0",
|
||
|
"lint-staged": "^12.3.3",
|
||
|
"memfs": "^3.4.1",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"prettier": "^2.3.2",
|
||
|
"sass": "^1.49.7",
|
||
|
"sass-loader": "^12.1.0",
|
||
|
"standard-version": "^9.3.0",
|
||
|
"typescript": "^4.5.5",
|
||
|
"webpack": "^5.70.0",
|
||
|
"webpack-cli": "^4.9.2",
|
||
|
"webpack-dev-server": "^4.7.4"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"webpack",
|
||
|
"css",
|
||
|
"extract",
|
||
|
"hmr"
|
||
|
]
|
||
|
}
|