package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "postcss-loader",
  3. "version": "7.3.4",
  4. "description": "PostCSS loader for webpack",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/postcss-loader",
  7. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  8. "homepage": "https://github.com/webpack-contrib/postcss-loader",
  9. "bugs": "https://github.com/webpack-contrib/postcss-loader/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/cjs.js",
  15. "engines": {
  16. "node": ">= 14.15.0"
  17. },
  18. "scripts": {
  19. "start": "npm run build -- -w",
  20. "clean": "del-cli dist",
  21. "prebuild": "npm run clean",
  22. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  23. "commitlint": "commitlint --from=master",
  24. "security": "npm audit --production",
  25. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  26. "lint:js": "eslint --cache .",
  27. "lint:spelling": "cspell \"**/*.*\"",
  28. "lint": "npm-run-all -l -p \"lint:**\"",
  29. "fix:js": "npm run lint:js -- --fix",
  30. "fix:prettier": "npm run lint:prettier -- --write",
  31. "fix": "npm-run-all -l fix:js fix:prettier",
  32. "test:only": "cross-env NODE_ENV=test jest",
  33. "test:watch": "npm run test:only -- --watch",
  34. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  35. "pretest": "npm run lint",
  36. "test": "npm run test:coverage",
  37. "prepare": "husky install && npm run build",
  38. "release": "standard-version"
  39. },
  40. "files": [
  41. "dist"
  42. ],
  43. "peerDependencies": {
  44. "postcss": "^7.0.0 || ^8.0.1",
  45. "webpack": "^5.0.0"
  46. },
  47. "dependencies": {
  48. "cosmiconfig": "^8.3.5",
  49. "jiti": "^1.20.0",
  50. "semver": "^7.5.4"
  51. },
  52. "devDependencies": {
  53. "@babel/cli": "^7.23.0",
  54. "@babel/core": "^7.23.0",
  55. "@babel/preset-env": "^7.22.20",
  56. "@commitlint/cli": "^17.7.2",
  57. "@commitlint/config-conventional": "^17.7.0",
  58. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  59. "babel-jest": "^29.7.0",
  60. "cross-env": "^7.0.3",
  61. "cspell": "^6.31.2",
  62. "cssnano": "^6.0.0",
  63. "del": "^6.1.1",
  64. "del-cli": "^5.1.0",
  65. "eslint": "^8.50.0",
  66. "eslint-config-prettier": "^8.9.0",
  67. "eslint-plugin-import": "^2.28.1",
  68. "husky": "^8.0.3",
  69. "jest": "^29.7.0",
  70. "less": "^4.2.0",
  71. "less-loader": "^11.1.0",
  72. "lint-staged": "^13.2.3",
  73. "memfs": "^3.4.13",
  74. "midas": "^2.0.3",
  75. "npm-run-all": "^4.1.5",
  76. "postcss": "^8.4.29",
  77. "postcss-dark-theme-class": "^0.7.3",
  78. "postcss-import": "^15.1.0",
  79. "postcss-js": "^4.0.1",
  80. "postcss-load-config": "^4.0.1",
  81. "postcss-nested": "^6.0.1",
  82. "postcss-short": "^5.0.0",
  83. "prettier": "^2.8.7",
  84. "sass": "^1.69.0",
  85. "sass-loader": "^13.2.2",
  86. "standard-version": "^9.3.2",
  87. "strip-ansi": "^6.0.0",
  88. "sugarss": "^4.0.1",
  89. "ts-jest": "^29.1.0",
  90. "ts-node": "^10.9.1",
  91. "webpack": "^5.88.2"
  92. },
  93. "keywords": [
  94. "css",
  95. "postcss",
  96. "postcss-runner",
  97. "webpack",
  98. "webpack-loader"
  99. ]
  100. }