Files
2026-02-10 01:14:19 +00:00

119 lines
3.4 KiB
JSON

{
"name": "postcss-loader",
"version": "8.2.0",
"description": "PostCSS loader for webpack",
"keywords": [
"css",
"postcss",
"postcss-runner",
"webpack",
"webpack-loader"
],
"homepage": "https://github.com/webpack-contrib/postcss-loader",
"bugs": "https://github.com/webpack-contrib/postcss-loader/issues",
"repository": "webpack-contrib/postcss-loader",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"main": "dist/cjs.js",
"files": [
"dist"
],
"scripts": {
"start": "npm run build -- -w",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"commitlint": "commitlint --from=master",
"security": "npm audit --production",
"lint:prettier": "prettier --cache --list-different .",
"lint:js": "eslint --cache .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint": "npm-run-all -l -p \"lint:**\"",
"fix:js": "npm run lint:js -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "npm-run-all -l fix:js fix:prettier",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"prepare": "husky && npm run build",
"release": "standard-version"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"jiti": "^2.5.1",
"semver": "^7.6.2"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@eslint/js": "^9.32.0",
"@eslint/markdown": "^7.1.0",
"@stylistic/eslint-plugin": "^5.2.2",
"babel-jest": "^30.0.5",
"cross-env": "^7.0.3",
"cspell": "^8.10.0",
"cssnano": "^6.1.2",
"del": "^7.1.0",
"del-cli": "^5.1.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-webpack": "^4.5.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-n": "^17.21.2",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^16.3.0",
"husky": "^9.1.3",
"jest": "^30.0.5",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.7",
"memfs": "^4.9.3",
"midas": "^2.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"postcss-dark-theme-class": "^1.3.0",
"postcss-import": "^16.1.0",
"postcss-js": "^4.0.1",
"postcss-load-config": "^5.1.0",
"postcss-nested": "^6.0.1",
"postcss-short": "^5.0.0",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"standard-version": "^9.3.2",
"strip-ansi": "^7.1.0",
"sugarss": "^4.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.38.0",
"webpack": "^5.92.1"
},
"peerDependencies": {
"@rspack/core": "0.x || 1.x",
"postcss": "^7.0.0 || ^8.0.1",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"webpack": {
"optional": true
}
},
"engines": {
"node": ">= 18.12.0"
}
}