package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "sass-loader",
  3. "version": "10.5.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": ">= 10.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",
  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": "npm run build",
  35. "release": "standard-version",
  36. "defaults": "webpack-defaults"
  37. },
  38. "files": [
  39. "dist"
  40. ],
  41. "peerDependencies": {
  42. "fibers": ">= 3.1.0",
  43. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
  44. "sass": "^1.3.0",
  45. "webpack": "^4.36.0 || ^5.0.0"
  46. },
  47. "peerDependenciesMeta": {
  48. "node-sass": {
  49. "optional": true
  50. },
  51. "sass": {
  52. "optional": true
  53. },
  54. "fibers": {
  55. "optional": true
  56. }
  57. },
  58. "dependencies": {
  59. "klona": "^2.0.4",
  60. "loader-utils": "^2.0.0",
  61. "neo-async": "^2.6.2",
  62. "schema-utils": "^3.0.0",
  63. "semver": "^7.3.2"
  64. },
  65. "devDependencies": {
  66. "@babel/cli": "^7.12.1",
  67. "@babel/core": "^7.12.3",
  68. "@babel/preset-env": "^7.12.1",
  69. "@commitlint/cli": "^11.0.0",
  70. "@commitlint/config-conventional": "^11.0.0",
  71. "@webpack-contrib/defaults": "^6.3.0",
  72. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  73. "babel-jest": "^26.6.3",
  74. "bootstrap": "^4.5.3",
  75. "bootstrap-sass": "^3.4.1",
  76. "cross-env": "^7.0.2",
  77. "css-loader": "^5.0.1",
  78. "del": "^6.0.0",
  79. "del-cli": "^3.0.1",
  80. "enhanced-resolve": "^5.5.0",
  81. "eslint": "^7.13.0",
  82. "eslint-config-prettier": "^7.1.0",
  83. "eslint-plugin-import": "^2.22.1",
  84. "fibers": "^5.0.0",
  85. "file-loader": "^6.2.0",
  86. "foundation-sites": "^6.6.3",
  87. "husky": "^4.3.0",
  88. "jest": "^26.6.3",
  89. "lint-staged": "^10.5.1",
  90. "material-components-web": "^8.0.0",
  91. "memfs": "^3.2.0",
  92. "node-sass": "^6.0.1",
  93. "npm-run-all": "^4.1.5",
  94. "prettier": "^2.1.2",
  95. "sass": "^1.29.0",
  96. "standard-version": "^9.0.0",
  97. "style-loader": "^2.0.0",
  98. "webpack": "^5.12.2"
  99. },
  100. "keywords": [
  101. "sass",
  102. "libsass",
  103. "webpack",
  104. "loader"
  105. ]
  106. }