{
  "name": "svelte-preprocess",
  "version": "4.0.9",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "description": "A Svelte preprocessor wrapper with baked in support for common used preprocessors",
  "author": "Christian Kaisermann <christian@kaisermann.me>",
  "repository": "https://github.com/sveltejs/svelte-preprocess",
  "keywords": [
    "svelte",
    "preprocess",
    "less",
    "stylus",
    "sass",
    "scss",
    "pug",
    "coffeescript"
  ],
  "engines": {
    "node": ">= 9.11.2"
  },
  "files": [
    "dist/"
  ],
  "scripts": {
    "prebuild": "rm -rf dist/",
    "build": "tsc --build tsconfig.build.json",
    "dev": "npm run build -- -w",
    "test": "jest",
    "test:ci": "jest --silent --no-cache",
    "lint": "eslint --ext js,ts .",
    "format": "prettier --write \"**/*.{ts,js,json}\"",
    "postinstall": "echo \"[svelte-preprocess] Don't forget to install the preprocessors packages that will be used: node-sass/sass, stylus, less, postcss & postcss-load-config, coffeescript, pug, etc...\"",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
    "prepublishOnly": "npm run test && npm run build"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "<rootDir>/src/**/*.ts",
      "!<rootDir>/src/types/**/*.ts"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    }
  },
  "husky": {
    "hooks": {
      "'pre-commit'": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js,tsx,jsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.json": [
      "prettier --write"
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.10.2",
    "@babel/preset-env": "^7.10.2",
    "@kiwi/eslint-config": "^1.0.0",
    "@kiwi/prettier-config": "^1.1.0",
    "@types/jest": "^25.2.3",
    "@types/node": "^14.0.11",
    "@types/node-sass": "^4.11.1",
    "@types/stylus": "^0.48.32",
    "autoprefixer": "^9.8.0",
    "babel-minify": "^0.5.1",
    "coffeescript": "^2.5.1",
    "conventional-changelog-cli": "^2.0.34",
    "eslint": "^6.0.0",
    "husky": "^4.2.5",
    "jest": "^25.0.0",
    "less": "^3.11.3",
    "lint-staged": "^10.2.9",
    "node-sass": "^4.14.1",
    "postcss": "^7.0.32",
    "postcss-easy-import": "^3.0.0",
    "postcss-load-config": "^2.1.0",
    "prettier": "^2.0.5",
    "pug": "^3.0.0",
    "sass": "^1.26.8",
    "stylus": "^0.54.7",
    "sugarss": "^2.0.0",
    "svelte": "^3.23.0",
    "ts-jest": "^25.1.0",
    "typescript": "^3.9.5"
  },
  "dependencies": {
    "@types/pug": "^2.0.4",
    "@types/sass": "^1.16.0",
    "detect-indent": "^6.0.0",
    "strip-indent": "^3.0.0"
  },
  "peerDependencies": {
    "@babel/core": "^7.10.2",
    "coffeescript": "^2.5.1",
    "less": "^3.11.3",
    "postcss": "^7.0.32",
    "postcss-load-config": "^2.1.0",
    "pug": "^3.0.0",
    "sass": "^1.26.8",
    "stylus": "^0.54.7",
    "svelte": "^3.23.0",
    "typescript": "^3.9.5"
  },
  "peerDependenciesMeta": {
    "@babel/core": {
      "optional": true
    },
    "coffeescript": {
      "optional": true
    },
    "less": {
      "optional": true
    },
    "node-sass": {
      "optional": true
    },
    "postcss": {
      "optional": true
    },
    "postcss-load-config": {
      "optional": true
    },
    "pug": {
      "optional": true
    },
    "sass": {
      "optional": true
    },
    "stylus": {
      "optional": true
    },
    "svelte": {
      "optional": true
    },
    "typescript": {
      "optional": true
    }
  }
}
