package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "sass-loader",
  3. "version": "5.0.0",
  4. "description": "Sass loader for webpack",
  5. "main": "lib/loader.js",
  6. "scripts": {
  7. "create-spec": "node test/tools/runCreateSpec.js",
  8. "pretest": "node test/tools/runCreateSpec.js",
  9. "test": "mocha -R spec",
  10. "posttest": "eslint --fix lib test",
  11. "test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
  12. "test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap",
  13. "test-watch": "webpack --config test/watch/webpack.config.js",
  14. "test-extract-text": "webpack --config test/extractText/webpack.config.js",
  15. "test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline"
  16. },
  17. "keywords": [
  18. "sass",
  19. "libsass",
  20. "webpack",
  21. "loader"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/jtangelder/sass-loader.git"
  26. },
  27. "author": "J. Tangelder",
  28. "license": "MIT",
  29. "peerDependencies": {
  30. "node-sass": "^4.0.0",
  31. "webpack": "^2.0.0"
  32. },
  33. "dependencies": {
  34. "async": "^2.0.1",
  35. "loader-utils": "^0.2.15",
  36. "lodash.tail": "^4.1.1",
  37. "pify": "^2.3.0"
  38. },
  39. "devDependencies": {
  40. "bootstrap-sass": "^3.3.5",
  41. "css-loader": "^0.26.1",
  42. "eslint": "^3.15.0",
  43. "eslint-config-peerigon": "^9.0.0",
  44. "eslint-plugin-jsdoc": "^2.4.0",
  45. "file-loader": "^0.10.0",
  46. "mocha": "^3.0.2",
  47. "node-sass": "^4.5.0",
  48. "raw-loader": "^0.5.1",
  49. "should": "^11.2.0",
  50. "style-loader": "^0.13.1",
  51. "webpack": "^2.2.1",
  52. "webpack-dev-server": "^2.3.0",
  53. "webpack-merge": "^2.6.1"
  54. }
  55. }