package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "sass-loader",
  3. "version": "13.3.2",
  4. "description": "Sass loader for webpack",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/sass-loader",
  7. "author": "J. Tangelder",
  8. "homepage": "https://github.com/webpack-contrib/sass-loader",
  9. "bugs": "https://github.com/webpack-contrib/sass-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 --list-different .",
  26. "lint:js": "eslint --cache .",
  27. "lint": "npm-run-all -l -p \"lint:**\"",
  28. "test:only": "cross-env NODE_ENV=test jest",
  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. "lint:spelling": "cspell \"**/*.*\"",
  33. "test:watch": "npm run test:only -- --watch",
  34. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  35. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  36. "pretest": "npm run lint",
  37. "test": "npm run test:coverage",
  38. "prepare": "husky install && npm run build",
  39. "release": "standard-version"
  40. },
  41. "files": [
  42. "dist"
  43. ],
  44. "peerDependencies": {
  45. "fibers": ">= 3.1.0",
  46. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
  47. "sass": "^1.3.0",
  48. "sass-embedded": "*",
  49. "webpack": "^5.0.0"
  50. },
  51. "peerDependenciesMeta": {
  52. "node-sass": {
  53. "optional": true
  54. },
  55. "sass": {
  56. "optional": true
  57. },
  58. "sass-embedded": {
  59. "optional": true
  60. },
  61. "fibers": {
  62. "optional": true
  63. }
  64. },
  65. "dependencies": {
  66. "neo-async": "^2.6.2"
  67. },
  68. "devDependencies": {
  69. "@babel/cli": "^7.21.5",
  70. "@babel/core": "^7.21.5",
  71. "@babel/preset-env": "^7.21.5",
  72. "@commitlint/cli": "^17.6.1",
  73. "@commitlint/config-conventional": "^17.6.1",
  74. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  75. "babel-jest": "^29.5.0",
  76. "bootstrap-sass": "^3.4.1",
  77. "bootstrap-v4": "npm:bootstrap@^4.5.3",
  78. "bootstrap-v5": "npm:bootstrap@^5.0.1",
  79. "cross-env": "^7.0.3",
  80. "cspell": "^6.31.1",
  81. "css-loader": "^6.7.3",
  82. "del": "^6.1.1",
  83. "del-cli": "^4.0.1",
  84. "enhanced-resolve": "^5.13.0",
  85. "eslint": "^8.39.0",
  86. "eslint-config-prettier": "^8.8.0",
  87. "eslint-plugin-import": "^2.27.5",
  88. "fibers": "^5.0.3",
  89. "file-loader": "^6.2.0",
  90. "foundation-sites": "^6.7.5",
  91. "husky": "^8.0.3",
  92. "jest": "^29.5.0",
  93. "jest-environment-node-single-context": "^29.0.0",
  94. "lint-staged": "^13.2.2",
  95. "material-components-web": "^9.0.0",
  96. "memfs": "^3.5.1",
  97. "node-sass": "^8.0.0",
  98. "node-sass-glob-importer": "^5.3.2",
  99. "npm-run-all": "^4.1.5",
  100. "prettier": "^2.8.8",
  101. "sass": "^1.62.1",
  102. "sass-embedded": "^1.62.0",
  103. "semver": "^7.5.0",
  104. "standard-version": "^9.3.1",
  105. "style-loader": "^3.3.2",
  106. "webpack": "^5.81.0"
  107. },
  108. "keywords": [
  109. "sass",
  110. "libsass",
  111. "webpack",
  112. "loader"
  113. ]
  114. }