package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_from": "sass-loader",
  3. "_id": "sass-loader@8.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==",
  6. "_location": "/sass-loader",
  7. "_phantomChildren": {
  8. "ajv": "6.12.0",
  9. "ajv-keywords": "3.4.1"
  10. },
  11. "_requested": {
  12. "type": "tag",
  13. "registry": true,
  14. "raw": "sass-loader",
  15. "name": "sass-loader",
  16. "escapedName": "sass-loader",
  17. "rawSpec": "",
  18. "saveSpec": null,
  19. "fetchSpec": "latest"
  20. },
  21. "_requiredBy": [
  22. "#DEV:/",
  23. "#USER"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz",
  26. "_shasum": "debecd8c3ce243c76454f2e8290482150380090d",
  27. "_spec": "sass-loader",
  28. "_where": "G:\\micro\\react\\cld2_react",
  29. "author": {
  30. "name": "J. Tangelder"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/webpack-contrib/sass-loader/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "clone-deep": "^4.0.1",
  38. "loader-utils": "^1.2.3",
  39. "neo-async": "^2.6.1",
  40. "schema-utils": "^2.6.1",
  41. "semver": "^6.3.0"
  42. },
  43. "deprecated": false,
  44. "description": "Sass loader for webpack",
  45. "devDependencies": {
  46. "@babel/cli": "^7.8.0",
  47. "@babel/core": "^7.8.0",
  48. "@babel/preset-env": "^7.8.2",
  49. "@commitlint/cli": "^8.3.4",
  50. "@commitlint/config-conventional": "^8.3.4",
  51. "@webpack-contrib/defaults": "^6.3.0",
  52. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  53. "babel-jest": "^24.9.0",
  54. "bootstrap": "^4.4.1",
  55. "bootstrap-sass": "^3.4.1",
  56. "commitlint-azure-pipelines-cli": "^1.0.3",
  57. "cross-env": "^6.0.3",
  58. "css-loader": "^3.4.2",
  59. "del": "^5.1.0",
  60. "del-cli": "^3.0.0",
  61. "eslint": "^6.8.0",
  62. "eslint-config-prettier": "^6.9.0",
  63. "eslint-plugin-import": "^2.20.0",
  64. "fibers": "^4.0.2",
  65. "file-loader": "^5.0.2",
  66. "husky": "^4.0.7",
  67. "jest": "^24.9.0",
  68. "jest-junit": "^10.0.0",
  69. "jquery": "^3.4.1",
  70. "lint-staged": "^9.5.0",
  71. "memfs": "^3.0.3",
  72. "node-sass": "^4.13.0",
  73. "npm-run-all": "^4.1.5",
  74. "prettier": "^1.19.1",
  75. "sass": "^1.24.4",
  76. "standard-version": "^7.0.1",
  77. "style-loader": "^1.1.2",
  78. "webpack": "^4.41.5",
  79. "webpack-cli": "^3.3.10",
  80. "webpack-dev-server": "^3.10.1"
  81. },
  82. "engines": {
  83. "node": ">= 8.9.0"
  84. },
  85. "files": [
  86. "dist"
  87. ],
  88. "funding": {
  89. "type": "opencollective",
  90. "url": "https://opencollective.com/webpack"
  91. },
  92. "homepage": "https://github.com/webpack-contrib/sass-loader",
  93. "keywords": [
  94. "sass",
  95. "libsass",
  96. "webpack",
  97. "loader"
  98. ],
  99. "license": "MIT",
  100. "main": "dist/cjs.js",
  101. "name": "sass-loader",
  102. "peerDependencies": {
  103. "webpack": "^4.36.0 || ^5.0.0",
  104. "node-sass": "^4.0.0",
  105. "sass": "^1.3.0",
  106. "fibers": ">= 3.1.0"
  107. },
  108. "peerDependenciesMeta": {
  109. "node-sass": {
  110. "optional": true
  111. },
  112. "sass": {
  113. "optional": true
  114. },
  115. "fibers": {
  116. "optional": true
  117. }
  118. },
  119. "repository": {
  120. "type": "git",
  121. "url": "git+https://github.com/webpack-contrib/sass-loader.git"
  122. },
  123. "scripts": {
  124. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  125. "clean": "del-cli dist",
  126. "commitlint": "commitlint --from=master",
  127. "defaults": "webpack-defaults",
  128. "lint": "npm-run-all -l -p \"lint:**\"",
  129. "lint:js": "eslint --cache .",
  130. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  131. "prebuild": "npm run clean",
  132. "prepare": "npm run build",
  133. "pretest": "npm run lint",
  134. "release": "standard-version",
  135. "security": "npm audit",
  136. "start": "npm run build -- -w",
  137. "test": "npm run test:coverage",
  138. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  139. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  140. "test:only": "cross-env NODE_ENV=test jest",
  141. "test:watch": "npm run test:only -- --watch"
  142. },
  143. "version": "8.0.2"
  144. }