{ "name": "css-loader", "version": "2.1.1", "description": "css loader module for webpack", "license": "MIT", "repository": "webpack-contrib/css-loader", "author": "Tobias Koppers @sokra", "homepage": "https://github.com/webpack-contrib/css-loader", "bugs": "https://github.com/webpack-contrib/css-loader/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", "clean": "del-cli dist", "commitlint": "commitlint", "commitmsg": "commitlint -e $GIT_PARAMS", "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/", "lib/", "index.js" ], "peerDependencies": { "webpack": "^4.0.0" }, "dependencies": { "icss-utils": "^4.1.0", "loader-utils": "^1.2.3", "camelcase": "^5.2.0", "normalize-path": "^3.0.0", "postcss": "^7.0.14", "postcss-modules-extract-imports": "^2.0.0", "postcss-modules-local-by-default": "^2.0.6", "postcss-modules-scope": "^2.1.0", "postcss-modules-values": "^2.0.0", "postcss-value-parser": "^3.3.0", "schema-utils": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.6", "@babel/polyfill": "^7.0.0", "@babel/preset-env": "^7.1.6", "@commitlint/cli": "^7.2.1", "@commitlint/config-conventional": "^7.1.2", "@webpack-contrib/defaults": "^3.0.0", "@webpack-contrib/eslint-config-webpack": "^3.0.0", "babel-jest": "^24.1.0", "cross-env": "^5.2.0", "del": "^4.0.0", "del-cli": "^1.1.0", "eslint": "^5.9.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-prettier": "^3.0.0", "file-loader": "^3.0.1", "husky": "^1.2.0", "jest": "^24.1.0", "lint-staged": "^8.1.0", "memory-fs": "^0.4.1", "postcss-loader": "^3.0.0", "postcss-preset-env": "^6.4.0", "prettier": "^1.15.2", "sass": "^1.15.1", "sass-loader": "^7.1.0", "standard-version": "^5.0.0", "strip-ansi": "^5.0.0", "webpack": "^4.26.1" }, "keywords": [ "webpack", "css", "loader", "url", "import" ], "babel": { "presets": [ [ "@babel/preset-env", { "targets": { "node": "6.9.0" }, "useBuiltIns": "usage" } ] ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "prettier": { "singleQuote": true, "trailingComma": "es5", "arrowParens": "always" } }