package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "sass-loader",
  3. "version": "8.0.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": ">= 8.9.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 \"{**/*,*}.{js,json,md,yml,css,ts}\" --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. "webpack": "^4.36.0 || ^5.0.0",
  43. "node-sass": "^4.0.0",
  44. "sass": "^1.3.0",
  45. "fibers": ">= 3.1.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. "clone-deep": "^4.0.1",
  60. "loader-utils": "^1.2.3",
  61. "neo-async": "^2.6.1",
  62. "schema-utils": "^2.6.1",
  63. "semver": "^6.3.0"
  64. },
  65. "devDependencies": {
  66. "@babel/cli": "^7.8.0",
  67. "@babel/core": "^7.8.0",
  68. "@babel/preset-env": "^7.8.2",
  69. "@commitlint/cli": "^8.3.4",
  70. "@commitlint/config-conventional": "^8.3.4",
  71. "@webpack-contrib/defaults": "^6.3.0",
  72. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  73. "babel-jest": "^24.9.0",
  74. "bootstrap": "^4.4.1",
  75. "bootstrap-sass": "^3.4.1",
  76. "commitlint-azure-pipelines-cli": "^1.0.3",
  77. "cross-env": "^6.0.3",
  78. "css-loader": "^3.4.2",
  79. "del": "^5.1.0",
  80. "del-cli": "^3.0.0",
  81. "eslint": "^6.8.0",
  82. "eslint-config-prettier": "^6.9.0",
  83. "eslint-plugin-import": "^2.20.0",
  84. "fibers": "^4.0.2",
  85. "file-loader": "^5.0.2",
  86. "husky": "^4.0.7",
  87. "jest": "^24.9.0",
  88. "jest-junit": "^10.0.0",
  89. "jquery": "^3.4.1",
  90. "lint-staged": "^9.5.0",
  91. "memfs": "^3.0.3",
  92. "node-sass": "^4.13.0",
  93. "npm-run-all": "^4.1.5",
  94. "prettier": "^1.19.1",
  95. "sass": "^1.24.4",
  96. "standard-version": "^7.0.1",
  97. "style-loader": "^1.1.2",
  98. "webpack": "^4.41.5",
  99. "webpack-cli": "^3.3.10",
  100. "webpack-dev-server": "^3.10.1"
  101. },
  102. "keywords": [
  103. "sass",
  104. "libsass",
  105. "webpack",
  106. "loader"
  107. ]
  108. }