UNPKG

extract-css-chunks-webpack-plugin-with-page-direction

Version:
116 lines (115 loc) 3.59 kB
{ "name": "extract-css-chunks-webpack-plugin-with-page-direction", "version": "0.0.0-development", "description": "Extract CSS from chunks into stylesheets + HMR. Supports Webpack 4 + SSR", "license": "MIT", "author": "James Gillmore <james@faceyspacey.com>", "contributors": [ "Zack Jackson <zack@ScriptedAlchemy.com> (https://github.com/ScriptedAlchemy)", "Amirhossein Ahmadi <amirhossein693@gmail.com> (https://github.com/amirhossein693)" ], "homepage": "https://github.com/amirhossein693/extract-css-chunks-webpack-plugin-with-page-direction", "repository": { "type": "git", "url": "https://github.com/amirhossein693/extract-css-chunks-webpack-plugin-with-page-direction" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "keywords": [ "css", "chunks", "code splitting", "mini-css", "hot", "hmr", "universal", "webpack", "webpack 4", "css-hot-loader", "extract-css-chunks-webpack-plugin" ], "main": "dist/cjs.js", "engines": { "node": ">= 6.9.0" }, "scripts": { "start": "npm run build -- -w", "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", "lint": "eslint --cache src test", "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", "lint-staged": "lint-staged", "prebuild": "npm run clean", "prepare": "npm run build", "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)", "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:coverage", "ci:lint": "npm run lint && npm run security", "ci:test": "npm run test -- --runInBand", "ci:coverage": "npm run test:coverage -- --runInBand", "defaults": "webpack-defaults", "semantic-release": "npx semantic-release", "travis": "npm run ci:coverage" }, "files": [ "dist" ], "peerDependencies": { "webpack": "^4.4.0" }, "dependencies": { "loader-utils": "^1.1.0", "normalize-url": "1.9.1", "schema-utils": "^1.0.0", "webpack-external-import": "^0.3.0-beta.0", "webpack-sources": "^1.1.0" }, "devDependencies": { "@babel/cli": "^7.5.0", "@babel/core": "^7.5.4", "@babel/preset-env": "^7.5.4", "@commitlint/cli": "^8.1.0", "@commitlint/config-conventional": "^8.1.0", "@webpack-contrib/defaults": "^5.0.2", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-eslint": "^10.0.2", "babel-jest": "^24.8.0", "commitlint-azure-pipelines-cli": "^1.0.2", "cross-env": "^5.2.0", "css-loader": "^3.0.0", "del": "^4.1.1", "del-cli": "^1.1.0", "es-check": "^5.0.0", "eslint": "^6.0.1", "eslint-config-prettier": "^6.0.0", "eslint-plugin-import": "^2.18.0", "file-loader": "^4.0.0", "husky": "^3.0.0", "jest": "^24.8.0", "jest-junit": "^6.4.0", "lint-staged": "^9.2.0", "memory-fs": "^0.4.1", "npm-run-all": "^4.1.5", "prettier": "^1.18.2", "standard-version": "^6.0.1", "webpack": "^4.35.3", "webpack-cli": "^3.3.6", "webpack-dev-server": "^3.7.2" }, "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }