123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- {
- "name": "mini-css-extract-plugin",
- "version": "0.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",
- "main": "dist/cjs.js",
- "engines": {
- "node": ">= 6.9.0"
- },
- "scripts": {
- "start": "npm run build -- -w",
- "prebuild": "npm run clean",
- "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
- "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js",
- "clean": "del-cli dist",
- "commitlint": "commitlint --from=master",
- "lint": "eslint --cache src test",
- "prepublish": "npm run build",
- "release": "standard-version",
- "security": "npm audit",
- "test:only": "jest",
- "test:watch": "jest --watch",
- "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
- "pretest": "npm run lint",
- "test": "npm run test:only",
- "ci:lint": "npm run lint && npm run security",
- "ci:test": "npm run test:only -- --runInBand",
- "ci:coverage": "npm run test:coverage -- --runInBand",
- "ci:lint:commits": "commitlint --from=origin/master --to=${CIRCLE_SHA1}",
- "defaults": "webpack-defaults"
- },
- "files": [
- "dist"
- ],
- "peerDependencies": {
- "webpack": "^4.4.0"
- },
- "dependencies": {
- "loader-utils": "^1.1.0",
- "normalize-url": "^2.0.1",
- "schema-utils": "^1.0.0",
- "webpack-sources": "^1.1.0"
- },
- "devDependencies": {
- "@babel/cli": "^7.4.3",
- "@babel/core": "^7.4.3",
- "@babel/preset-env": "^7.4.3",
- "@commitlint/cli": "^7.5.2",
- "@commitlint/config-conventional": "^7.5.0",
- "@webpack-contrib/defaults": "^3.1.1",
- "@webpack-contrib/eslint-config-webpack": "^3.0.0",
- "acorn": "^6.1.1",
- "babel-eslint": "^10.0.1",
- "babel-jest": "^24.7.1",
- "cross-env": "^5.1.3",
- "css-loader": "^2.1.1",
- "del": "^4.1.0",
- "del-cli": "^1.1.0",
- "es-check": "^5.0.0",
- "eslint": "^5.16.0",
- "eslint-plugin-import": "^2.16.0",
- "eslint-plugin-prettier": "^3.0.1",
- "file-loader": "^3.0.1",
- "husky": "^1.3.1",
- "jest": "^24.7.1",
- "lint-staged": "^8.1.5",
- "memory-fs": "^0.4.1",
- "pre-commit": "^1.2.2",
- "prettier": "^1.16.4",
- "standard-version": "^5.0.2",
- "webpack": "4.29.0",
- "webpack-cli": "^3.3.0",
- "webpack-dev-server": "^3.3.1"
- },
- "keywords": [
- "webpack",
- "css",
- "extract",
- "hmr"
- ],
- "babel": {
- "presets": [
- [
- "@babel/preset-env",
- {
- "targets": {
- "node": "6.9.0"
- }
- }
- ]
- ]
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged",
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
- }
- },
- "lint-staged": {
- "*.js": [
- "eslint --fix",
- "git add"
- ]
- },
- "commitlint": {
- "extends": [
- "@commitlint/config-conventional"
- ]
- },
- "prettier": {
- "singleQuote": true,
- "trailingComma": "es5",
- "arrowParens": "always"
- }
- }
|