diff options
Diffstat (limited to 'node_modules/mini-css-extract-plugin/package.json')
| -rw-r--r-- | node_modules/mini-css-extract-plugin/package.json | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/node_modules/mini-css-extract-plugin/package.json b/node_modules/mini-css-extract-plugin/package.json new file mode 100644 index 00000000..ead0e589 --- /dev/null +++ b/node_modules/mini-css-extract-plugin/package.json @@ -0,0 +1,91 @@ +{ + "name": "mini-css-extract-plugin", + "version": "0.4.4", + "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", + "bin": "", + "main": "dist/cjs.js", + "engines": { + "node": ">= 6.9.0 <7.0.0 || >= 8.9.0" + }, + "scripts": { + "start": "npm run build -- -w", + "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", + "clean": "del-cli dist", + "commitlint": "commitlint", + "commitmsg": "commitlint -e $GIT_PARAMS", + "lint": "eslint --cache src test", + "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", + "lint-staged": "lint-staged", + "prebuild": "npm run clean", + "prepublish": "npm run build", + "release": "standard-version", + "release:ci": "conventional-github-releaser -p angular", + "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", + "security": "nsp check", + "test": "jest", + "test:watch": "jest --watch", + "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", + "test:manual": "webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js", + "ci:lint": "npm run lint && npm run security", + "ci:test": "npm run test -- --runInBand", + "ci:coverage": "npm run test:coverage -- --runInBand", + "defaults": "webpack-defaults" + }, + "files": [ + "dist" + ], + "peerDependencies": { + "webpack": "^4.4.0" + }, + "dependencies": { + "schema-utils": "^1.0.0", + "loader-utils": "^1.1.0", + "webpack-sources": "^1.1.0" + }, + "devDependencies": { + "@commitlint/cli": "^6.1.3", + "@commitlint/config-conventional": "^6.1.3", + "@webpack-contrib/eslint-config-webpack": "^2.0.4", + "babel-cli": "^6.26.0", + "babel-jest": "^22.2.2", + "babel-plugin-transform-object-rest-spread": "^6.26.0", + "babel-polyfill": "^6.26.0", + "babel-preset-env": "^1.6.1", + "conventional-github-releaser": "^2.0.2", + "cross-env": "^5.1.3", + "css-loader": "^0.28.10", + "del": "^3.0.0", + "del-cli": "^1.1.0", + "eslint": "^4.17.0", + "eslint-plugin-import": "^2.8.0", + "eslint-plugin-prettier": "^2.6.0", + "file-loader": "^1.1.11", + "husky": "^0.14.3", + "jest": "^22.2.2", + "lint-staged": "^6.1.0", + "memory-fs": "^0.4.1", + "nsp": "^3.1.0", + "pre-commit": "^1.2.2", + "prettier": "^1.11.1", + "standard-version": "^4.3.0", + "webpack": "^4.14.0", + "webpack-cli": "^2.0.13", + "webpack-defaults": "^2.3.0", + "webpack-dev-server": "^3.1.1" + }, + "keywords": [ + "webpack" + ], + "pre-commit": "lint-staged", + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ] + } +} |
