package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {
  2. "_from": "sass-loader",
  3. "_id": "sass-loader@12.3.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-kyeJgcGJw2pYy/w31LnO8M3AKHE=",
  6. "_location": "/sass-loader",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "sass-loader",
  12. "name": "sass-loader",
  13. "escapedName": "sass-loader",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#DEV:/",
  20. "#USER"
  21. ],
  22. "_resolved": "https://registry.npmmirror.com/sass-loader/download/sass-loader-12.3.0.tgz?cache=0&sync_timestamp=1635385383233&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fsass-loader%2Fdownload%2Fsass-loader-12.3.0.tgz",
  23. "_shasum": "93278981c189c36a58cbfc37d4b9cef0cdc02871",
  24. "_spec": "sass-loader",
  25. "_where": "/Users/kiys/Desktop/parkService-wxapp/pet",
  26. "author": {
  27. "name": "J. Tangelder"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/webpack-contrib/sass-loader/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "klona": "^2.0.4",
  35. "neo-async": "^2.6.2"
  36. },
  37. "deprecated": false,
  38. "description": "Sass loader for webpack",
  39. "devDependencies": {
  40. "@babel/cli": "^7.14.5",
  41. "@babel/core": "^7.14.6",
  42. "@babel/preset-env": "^7.14.7",
  43. "@commitlint/cli": "^13.1.0",
  44. "@commitlint/config-conventional": "^13.1.0",
  45. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  46. "babel-jest": "^27.0.6",
  47. "bootstrap-sass": "^3.4.1",
  48. "bootstrap-v4": "npm:bootstrap@^4.5.3",
  49. "bootstrap-v5": "npm:bootstrap@^5.0.1",
  50. "cross-env": "^7.0.3",
  51. "css-loader": "^6.2.0",
  52. "del": "^6.0.0",
  53. "del-cli": "^4.0.1",
  54. "enhanced-resolve": "^5.8.2",
  55. "eslint": "^8.1.0",
  56. "eslint-config-prettier": "^8.3.0",
  57. "eslint-plugin-import": "^2.23.3",
  58. "fibers": "^5.0.0",
  59. "file-loader": "^6.2.0",
  60. "foundation-sites": "^6.6.3",
  61. "husky": "^7.0.1",
  62. "jest": "^27.0.6",
  63. "lint-staged": "^11.0.1",
  64. "material-components-web": "^8.0.0",
  65. "memfs": "^3.2.2",
  66. "node-sass": "^6.0.1",
  67. "node-sass-glob-importer": "^5.3.2",
  68. "npm-run-all": "^4.1.5",
  69. "prettier": "^2.3.2",
  70. "sass": "^1.35.2",
  71. "semver": "^7.3.5",
  72. "standard-version": "^9.3.1",
  73. "style-loader": "^3.2.1",
  74. "webpack": "^5.45.1"
  75. },
  76. "engines": {
  77. "node": ">= 12.13.0"
  78. },
  79. "files": [
  80. "dist"
  81. ],
  82. "funding": {
  83. "type": "opencollective",
  84. "url": "https://opencollective.com/webpack"
  85. },
  86. "homepage": "https://github.com/webpack-contrib/sass-loader",
  87. "keywords": [
  88. "sass",
  89. "libsass",
  90. "webpack",
  91. "loader"
  92. ],
  93. "license": "MIT",
  94. "main": "dist/cjs.js",
  95. "name": "sass-loader",
  96. "peerDependencies": {
  97. "fibers": ">= 3.1.0",
  98. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0",
  99. "sass": "^1.3.0",
  100. "webpack": "^5.0.0"
  101. },
  102. "peerDependenciesMeta": {
  103. "node-sass": {
  104. "optional": true
  105. },
  106. "sass": {
  107. "optional": true
  108. },
  109. "fibers": {
  110. "optional": true
  111. }
  112. },
  113. "repository": {
  114. "type": "git",
  115. "url": "git+https://github.com/webpack-contrib/sass-loader.git"
  116. },
  117. "scripts": {
  118. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  119. "clean": "del-cli dist",
  120. "commitlint": "commitlint --from=master",
  121. "lint": "npm-run-all -l -p \"lint:**\"",
  122. "lint:js": "eslint --cache .",
  123. "lint:prettier": "prettier --list-different .",
  124. "prebuild": "npm run clean",
  125. "prepare": "husky install && npm run build",
  126. "pretest": "npm run lint",
  127. "release": "standard-version",
  128. "security": "npm audit --production",
  129. "start": "npm run build -- -w",
  130. "test": "npm run test:coverage",
  131. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  132. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  133. "test:only": "cross-env NODE_ENV=test jest",
  134. "test:watch": "npm run test:only -- --watch"
  135. },
  136. "version": "12.3.0"
  137. }