package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "sass-loader",
  3. "version": "12.6.0",
  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": ">= 12.13.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. "test:watch": "npm run test:only -- --watch",
  30. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  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. "fibers": ">= 3.1.0",
  42. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
  43. "sass": "^1.3.0",
  44. "sass-embedded": "*",
  45. "webpack": "^5.0.0"
  46. },
  47. "peerDependenciesMeta": {
  48. "node-sass": {
  49. "optional": true
  50. },
  51. "sass": {
  52. "optional": true
  53. },
  54. "sass-embedded": {
  55. "optional": true
  56. },
  57. "fibers": {
  58. "optional": true
  59. }
  60. },
  61. "dependencies": {
  62. "klona": "^2.0.4",
  63. "neo-async": "^2.6.2"
  64. },
  65. "devDependencies": {
  66. "@babel/cli": "^7.17.0",
  67. "@babel/core": "^7.17.0",
  68. "@babel/preset-env": "^7.16.11",
  69. "@commitlint/cli": "^16.2.1",
  70. "@commitlint/config-conventional": "^16.2.1",
  71. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  72. "babel-jest": "^27.5.0",
  73. "bootstrap-sass": "^3.4.1",
  74. "bootstrap-v4": "npm:bootstrap@^4.5.3",
  75. "bootstrap-v5": "npm:bootstrap@^5.0.1",
  76. "cross-env": "^7.0.3",
  77. "css-loader": "^6.6.0",
  78. "del": "^6.0.0",
  79. "del-cli": "^4.0.1",
  80. "enhanced-resolve": "^5.8.2",
  81. "eslint": "^8.8.0",
  82. "eslint-config-prettier": "^8.3.0",
  83. "eslint-plugin-import": "^2.25.4",
  84. "fibers": "^5.0.1",
  85. "file-loader": "^6.2.0",
  86. "foundation-sites": "^6.6.3",
  87. "husky": "^7.0.1",
  88. "jest": "^27.5.0",
  89. "jest-environment-node-single-context": "^27.2.0",
  90. "lint-staged": "^12.3.3",
  91. "material-components-web": "^8.0.0",
  92. "memfs": "^3.4.1",
  93. "node-sass": "^7.0.1",
  94. "node-sass-glob-importer": "^5.3.2",
  95. "npm-run-all": "^4.1.5",
  96. "prettier": "^2.3.2",
  97. "sass": "^1.49.7",
  98. "sass-embedded": "^1.49.7",
  99. "semver": "^7.3.5",
  100. "standard-version": "^9.3.1",
  101. "style-loader": "^3.2.1",
  102. "webpack": "^5.68.0"
  103. },
  104. "keywords": [
  105. "sass",
  106. "libsass",
  107. "webpack",
  108. "loader"
  109. ]
  110. }