package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. {
  2. "_args": [
  3. [
  4. "sass-loader@10.4.1",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "sass-loader@10.4.1",
  10. "_id": "sass-loader@10.4.1",
  11. "_inBundle": false,
  12. "_integrity": "sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==",
  13. "_location": "/sass-loader",
  14. "_phantomChildren": {
  15. "@types/json-schema": "7.0.11",
  16. "ajv": "6.12.6",
  17. "big.js": "5.2.2",
  18. "emojis-list": "3.0.0"
  19. },
  20. "_requested": {
  21. "type": "version",
  22. "registry": true,
  23. "raw": "sass-loader@10.4.1",
  24. "name": "sass-loader",
  25. "escapedName": "sass-loader",
  26. "rawSpec": "10.4.1",
  27. "saveSpec": null,
  28. "fetchSpec": "10.4.1"
  29. },
  30. "_requiredBy": [
  31. "#DEV:/"
  32. ],
  33. "_resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.4.1.tgz",
  34. "_spec": "10.4.1",
  35. "_where": "E:\\2023\\5\\myjadmin",
  36. "author": {
  37. "name": "J. Tangelder"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/webpack-contrib/sass-loader/issues"
  41. },
  42. "dependencies": {
  43. "klona": "^2.0.4",
  44. "loader-utils": "^2.0.0",
  45. "neo-async": "^2.6.2",
  46. "schema-utils": "^3.0.0",
  47. "semver": "^7.3.2"
  48. },
  49. "description": "Sass loader for webpack",
  50. "devDependencies": {
  51. "@babel/cli": "^7.12.1",
  52. "@babel/core": "^7.12.3",
  53. "@babel/preset-env": "^7.12.1",
  54. "@commitlint/cli": "^11.0.0",
  55. "@commitlint/config-conventional": "^11.0.0",
  56. "@webpack-contrib/defaults": "^6.3.0",
  57. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  58. "babel-jest": "^26.6.3",
  59. "bootstrap": "^4.5.3",
  60. "bootstrap-sass": "^3.4.1",
  61. "cross-env": "^7.0.2",
  62. "css-loader": "^5.0.1",
  63. "del": "^6.0.0",
  64. "del-cli": "^3.0.1",
  65. "enhanced-resolve": "^5.5.0",
  66. "eslint": "^7.13.0",
  67. "eslint-config-prettier": "^7.1.0",
  68. "eslint-plugin-import": "^2.22.1",
  69. "fibers": "^5.0.0",
  70. "file-loader": "^6.2.0",
  71. "foundation-sites": "^6.6.3",
  72. "husky": "^4.3.0",
  73. "jest": "^26.6.3",
  74. "lint-staged": "^10.5.1",
  75. "material-components-web": "^8.0.0",
  76. "memfs": "^3.2.0",
  77. "node-sass": "^6.0.1",
  78. "npm-run-all": "^4.1.5",
  79. "prettier": "^2.1.2",
  80. "sass": "^1.29.0",
  81. "standard-version": "^9.0.0",
  82. "style-loader": "^2.0.0",
  83. "webpack": "^5.12.2"
  84. },
  85. "engines": {
  86. "node": ">= 10.13.0"
  87. },
  88. "files": [
  89. "dist"
  90. ],
  91. "funding": {
  92. "type": "opencollective",
  93. "url": "https://opencollective.com/webpack"
  94. },
  95. "homepage": "https://github.com/webpack-contrib/sass-loader",
  96. "keywords": [
  97. "sass",
  98. "libsass",
  99. "webpack",
  100. "loader"
  101. ],
  102. "license": "MIT",
  103. "main": "dist/cjs.js",
  104. "name": "sass-loader",
  105. "peerDependencies": {
  106. "fibers": ">= 3.1.0",
  107. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  108. "sass": "^1.3.0",
  109. "webpack": "^4.36.0 || ^5.0.0"
  110. },
  111. "peerDependenciesMeta": {
  112. "node-sass": {
  113. "optional": true
  114. },
  115. "sass": {
  116. "optional": true
  117. },
  118. "fibers": {
  119. "optional": true
  120. }
  121. },
  122. "repository": {
  123. "type": "git",
  124. "url": "git+https://github.com/webpack-contrib/sass-loader.git"
  125. },
  126. "scripts": {
  127. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  128. "clean": "del-cli dist",
  129. "commitlint": "commitlint --from=master",
  130. "defaults": "webpack-defaults",
  131. "lint": "npm-run-all -l -p \"lint:**\"",
  132. "lint:js": "eslint --cache .",
  133. "lint:prettier": "prettier --list-different .",
  134. "prebuild": "npm run clean",
  135. "prepare": "npm run build",
  136. "pretest": "npm run lint",
  137. "release": "standard-version",
  138. "security": "npm audit",
  139. "start": "npm run build -- -w",
  140. "test": "npm run test:coverage",
  141. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  142. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  143. "test:only": "cross-env NODE_ENV=test jest",
  144. "test:watch": "npm run test:only -- --watch"
  145. },
  146. "version": "10.4.1"
  147. }