package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "sass-loader",
  3. "version": "7.1.0",
  4. "description": "Sass loader for webpack",
  5. "author": "J. Tangelder",
  6. "license": "MIT",
  7. "main": "lib/loader.js",
  8. "files": [
  9. "lib"
  10. ],
  11. "scripts": {
  12. "appveyor:test": "npm test",
  13. "create-spec": "node test/tools/runCreateSpec.js",
  14. "lint": "eslint lib test",
  15. "test": "nyc --all mocha -R spec -t 10000",
  16. "test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
  17. "test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap --inline",
  18. "test-watch": "webpack --config test/watch/webpack.config.js",
  19. "test-extract-text": "webpack --config test/extractText/webpack.config.js",
  20. "test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline",
  21. "travis:lint": "npm run lint",
  22. "travis:test": "npm run test",
  23. "travis:coverage": "npm run test",
  24. "pretest": "npm run create-spec",
  25. "posttest": "npm run lint",
  26. "release": "standard-version"
  27. },
  28. "dependencies": {
  29. "clone-deep": "^2.0.1",
  30. "loader-utils": "^1.0.1",
  31. "lodash.tail": "^4.1.1",
  32. "neo-async": "^2.5.0",
  33. "pify": "^3.0.0",
  34. "semver": "^5.5.0"
  35. },
  36. "devDependencies": {
  37. "bootstrap-sass": "^3.3.5",
  38. "css-loader": "^0.28.4",
  39. "eslint": "^3.16.0",
  40. "eslint-config-peerigon": "^9.0.0",
  41. "eslint-plugin-jsdoc": "^2.4.0",
  42. "file-loader": "^0.11.2",
  43. "mocha": "^3.0.2",
  44. "mock-require": "^3.0.1",
  45. "node-sass": "^4.5.0",
  46. "nyc": "^11.0.2",
  47. "raw-loader": "^0.5.1",
  48. "sass": "^1.3.0",
  49. "should": "^11.2.0",
  50. "standard-version": "^4.2.0",
  51. "style-loader": "^0.18.2",
  52. "webpack": "^4.5.0",
  53. "webpack-dev-server": "^2.4.1",
  54. "webpack-merge": "^4.0.0"
  55. },
  56. "engines": {
  57. "node": ">= 6.9.0 || >= 8.9.0"
  58. },
  59. "peerDependencies": {
  60. "webpack": "^3.0.0 || ^4.0.0"
  61. },
  62. "keywords": [
  63. "sass",
  64. "libsass",
  65. "webpack",
  66. "loader"
  67. ],
  68. "repository": "https://github.com/webpack-contrib/sass-loader.git",
  69. "bugs": "https://github.com/webpack-contrib/sass-loader/issues",
  70. "homepage": "https://github.com/webpack-contrib/sass-loader"
  71. }