package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "postcss-loader",
  3. "version": "7.2.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. "test:only": "cross-env NODE_ENV=test jest",
  30. "test:watch": "npm run test:only -- --watch",
  31. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  32. "pretest": "npm run lint",
  33. "test": "npm run test:coverage",
  34. "prepare": "husky install && npm run build",
  35. "release": "standard-version"
  36. },
  37. "files": [
  38. "dist"
  39. ],
  40. "peerDependencies": {
  41. "postcss": "^7.0.0 || ^8.0.1",
  42. "webpack": "^5.0.0",
  43. "ts-node": ">=10",
  44. "typescript": ">=4"
  45. },
  46. "peerDependenciesMeta": {
  47. "ts-node": {
  48. "optional": true
  49. },
  50. "typescript": {
  51. "optional": true
  52. }
  53. },
  54. "dependencies": {
  55. "cosmiconfig": "^8.1.3",
  56. "cosmiconfig-typescript-loader": "^4.3.0",
  57. "klona": "^2.0.6",
  58. "semver": "^7.3.8"
  59. },
  60. "devDependencies": {
  61. "@babel/cli": "^7.21.0",
  62. "@babel/core": "^7.21.4",
  63. "@babel/preset-env": "^7.21.4",
  64. "@commitlint/cli": "^17.5.1",
  65. "@commitlint/config-conventional": "^17.4.4",
  66. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  67. "babel-jest": "^29.4.3",
  68. "cross-env": "^7.0.3",
  69. "cspell": "^6.31.1",
  70. "cssnano": "^6.0.0",
  71. "del": "^6.1.1",
  72. "del-cli": "^5.0.0",
  73. "eslint": "^8.37.0",
  74. "eslint-config-prettier": "^8.8.0",
  75. "eslint-plugin-import": "^2.27.5",
  76. "husky": "^8.0.3",
  77. "jest": "^29.4.3",
  78. "less": "^4.1.3",
  79. "less-loader": "^11.1.0",
  80. "lint-staged": "^13.2.0",
  81. "memfs": "^3.4.13",
  82. "midas": "^2.0.3",
  83. "npm-run-all": "^4.1.5",
  84. "postcss": "^8.4.21",
  85. "postcss-dark-theme-class": "^0.7.3",
  86. "postcss-import": "^15.1.0",
  87. "postcss-js": "^4.0.1",
  88. "postcss-load-config": "^4.0.1",
  89. "postcss-nested": "^6.0.1",
  90. "postcss-short": "^5.0.0",
  91. "prettier": "^2.8.7",
  92. "sass": "^1.60.0",
  93. "sass-loader": "^13.2.2",
  94. "standard-version": "^9.3.2",
  95. "strip-ansi": "^6.0.0",
  96. "sugarss": "^4.0.1",
  97. "ts-jest": "^29.1.0",
  98. "ts-node": "^10.9.1",
  99. "webpack": "^5.77.0"
  100. },
  101. "keywords": [
  102. "css",
  103. "postcss",
  104. "postcss-runner",
  105. "webpack",
  106. "webpack-loader"
  107. ]
  108. }