{
  "name": "sass-to-string",
  "version": "1.6.4",
  "description": "Webpack loader that takes a SCSS file and converts it to a javascript string",
  "main": "lib/index.js",
  "scripts": {
    "start": "webpack serve",
    "build": "npm run clean && npm run lint && tsc",
    "clean": "rimraf lib && rimraf dist",
    "lint": "eslint --ext .js --ext .ts, ./ && npx stylelint \"src/**/*.scss\"",
    "publish:patch": "npm version patch && npm publish && git push",
    "publish:minor": "npm version minor && npm publish && git push",
    "publish:major": "npm version major && npm publish && git push",
    "test": "echo \"Error: no test specified\" && exit 0",
    "test:output": "tsc && sass-to-string --dist=lib"
  },
  "typings": "./lib/types/index.d.ts",
  "repository": "https://github.com/m4thieulavoie/sass-to-string",
  "keywords": [
    "sass",
    "javascript",
    "web",
    "components"
  ],
  "bin": {
    "sass-to-string": "bin/sass-to-string"
  },
  "author": "Mathieu Lavoie",
  "license": "MIT",
  "peerDependencies": {
    "fs-extra": "^10.0.0 || ^11.0.0",
    "sass": "^1.77.6",
    "sass-loader": "^13.0.0 || ^14.0.0",
    "webpack": "^5.0.0"
  },
  "devDependencies": {
    "@m4thieulavoie/linting": "0.2.13",
    "bootstrap": "5.3.2",
    "eslint": "8.56.0",
    "fs-extra": "11.2.0",
    "html-webpack-plugin": "5.6.0",
    "prettier": "3.2.4",
    "rimraf": "3.0.2",
    "sass-loader": "14.2.1",
    "ts-loader": "9.4.2",
    "typescript": "4.9.5",
    "webpack": "5.82.1",
    "webpack-cli": "5.1.1",
    "webpack-dev-server": "4.15.0"
  }
}
