{
  "name": "sass-loader",
  "version": "7.2.0",
  "description": "Sass loader for webpack",
  "author": "J. Tangelder",
  "license": "MIT",
  "main": "lib/loader.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "appveyor:test": "npm test",
    "create-spec": "node test/tools/runCreateSpec.js",
    "lint": "eslint lib test",
    "test": "nyc mocha -R spec -t 10000",
    "test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
    "test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap --inline",
    "test-watch": "webpack --config test/watch/webpack.config.js",
    "test-extract-text": "webpack --config test/extractText/webpack.config.js",
    "test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline",
    "travis:lint:commits": "commitlint --from=${TRAVIS_BRANCH} --to=${TRAVIS_COMMIT}",
    "travis:lint": "npm run lint && npm run travis:lint:commits",
    "travis:test": "npm run test",
    "travis:coverage": "npm run test",
    "pretest": "npm run create-spec",
    "posttest": "npm run lint",
    "release": "standard-version"
  },
  "dependencies": {
    "clone-deep": "^4.0.1",
    "loader-utils": "^1.0.1",
    "neo-async": "^2.5.0",
    "pify": "^4.0.1",
    "semver": "^5.5.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^7.2.1",
    "@commitlint/config-conventional": "^7.1.2",
    "@webpack-contrib/eslint-config-webpack": "^3.0.0",
    "bootstrap-sass": "^3.3.5",
    "css-loader": "^2.0.0",
    "eslint": "^5.10.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsdoc": "^4.4.3",
    "eslint-plugin-prettier": "^3.0.0",
    "file-loader": "^3.0.1",
    "husky": "^1.2.0",
    "lint-staged": "^8.1.0",
    "mocha": "^6.0.2",
    "mock-require": "^3.0.1",
    "node-sass": "^4.5.0",
    "nyc": "^13.1.0",
    "raw-loader": "^1.0.0",
    "prettier": "^1.15.2",
    "sass": "^1.3.0",
    "should": "^13.2.3",
    "standard-version": "^5.0.2",
    "style-loader": "^0.23.1",
    "webpack": "^4.5.0",
    "webpack-cli": "^3.1.0",
    "webpack-dev-server": "^3.1.4",
    "webpack-merge": "^4.0.0",
    "chokidar": "^2.1.6"
  },
  "engines": {
    "node": ">= 6.9.0"
  },
  "peerDependencies": {
    "webpack": "^3.0.0 || ^4.0.0"
  },
  "keywords": [
    "sass",
    "libsass",
    "webpack",
    "loader"
  ],
  "repository": "https://github.com/webpack-contrib/sass-loader.git",
  "bugs": "https://github.com/webpack-contrib/sass-loader/issues",
  "homepage": "https://github.com/webpack-contrib/sass-loader",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}