[6a3a178] | 1 | {
|
---|
| 2 | "name": "sass-loader",
|
---|
| 3 | "version": "12.1.0",
|
---|
| 4 | "description": "Sass loader for webpack",
|
---|
| 5 | "license": "MIT",
|
---|
| 6 | "repository": "webpack-contrib/sass-loader",
|
---|
| 7 | "author": "J. Tangelder",
|
---|
| 8 | "homepage": "https://github.com/webpack-contrib/sass-loader",
|
---|
| 9 | "bugs": "https://github.com/webpack-contrib/sass-loader/issues",
|
---|
| 10 | "funding": {
|
---|
| 11 | "type": "opencollective",
|
---|
| 12 | "url": "https://opencollective.com/webpack"
|
---|
| 13 | },
|
---|
| 14 | "main": "dist/cjs.js",
|
---|
| 15 | "engines": {
|
---|
| 16 | "node": ">= 12.13.0"
|
---|
| 17 | },
|
---|
| 18 | "scripts": {
|
---|
| 19 | "start": "npm run build -- -w",
|
---|
| 20 | "clean": "del-cli dist",
|
---|
| 21 | "prebuild": "npm run clean",
|
---|
| 22 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
---|
| 23 | "commitlint": "commitlint --from=master",
|
---|
| 24 | "security": "npm audit --production",
|
---|
| 25 | "lint:prettier": "prettier --list-different .",
|
---|
| 26 | "lint:js": "eslint --cache .",
|
---|
| 27 | "lint": "npm-run-all -l -p \"lint:**\"",
|
---|
| 28 | "test:only": "cross-env NODE_ENV=test jest",
|
---|
| 29 | "test:watch": "npm run test:only -- --watch",
|
---|
| 30 | "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
|
---|
| 31 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
---|
| 32 | "pretest": "npm run lint",
|
---|
| 33 | "test": "npm run test:coverage",
|
---|
| 34 | "prepare": "husky install && npm run build",
|
---|
| 35 | "release": "standard-version"
|
---|
| 36 | },
|
---|
| 37 | "files": [
|
---|
| 38 | "dist"
|
---|
| 39 | ],
|
---|
| 40 | "peerDependencies": {
|
---|
| 41 | "fibers": ">= 3.1.0",
|
---|
| 42 | "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0",
|
---|
| 43 | "sass": "^1.3.0",
|
---|
| 44 | "webpack": "^5.0.0"
|
---|
| 45 | },
|
---|
| 46 | "peerDependenciesMeta": {
|
---|
| 47 | "node-sass": {
|
---|
| 48 | "optional": true
|
---|
| 49 | },
|
---|
| 50 | "sass": {
|
---|
| 51 | "optional": true
|
---|
| 52 | },
|
---|
| 53 | "fibers": {
|
---|
| 54 | "optional": true
|
---|
| 55 | }
|
---|
| 56 | },
|
---|
| 57 | "dependencies": {
|
---|
| 58 | "klona": "^2.0.4",
|
---|
| 59 | "neo-async": "^2.6.2"
|
---|
| 60 | },
|
---|
| 61 | "devDependencies": {
|
---|
| 62 | "@babel/cli": "^7.14.5",
|
---|
| 63 | "@babel/core": "^7.14.5",
|
---|
| 64 | "@babel/preset-env": "^7.14.5",
|
---|
| 65 | "@commitlint/cli": "^12.1.4",
|
---|
| 66 | "@commitlint/config-conventional": "^12.1.4",
|
---|
| 67 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
---|
| 68 | "babel-jest": "^27.0.2",
|
---|
| 69 | "bootstrap-sass": "^3.4.1",
|
---|
| 70 | "bootstrap-v4": "npm:bootstrap@^4.5.3",
|
---|
| 71 | "bootstrap-v5": "npm:bootstrap@^5.0.1",
|
---|
| 72 | "cross-env": "^7.0.3",
|
---|
| 73 | "css-loader": "^5.2.6",
|
---|
| 74 | "del": "^6.0.0",
|
---|
| 75 | "del-cli": "^3.0.1",
|
---|
| 76 | "enhanced-resolve": "^5.8.2",
|
---|
| 77 | "eslint": "^7.28.0",
|
---|
| 78 | "eslint-config-prettier": "^8.3.0",
|
---|
| 79 | "eslint-plugin-import": "^2.23.3",
|
---|
| 80 | "fibers": "^5.0.0",
|
---|
| 81 | "file-loader": "^6.2.0",
|
---|
| 82 | "foundation-sites": "^6.6.3",
|
---|
| 83 | "husky": "^6.0.0",
|
---|
| 84 | "jest": "^27.0.4",
|
---|
| 85 | "lint-staged": "^11.0.0",
|
---|
| 86 | "material-components-web": "^8.0.0",
|
---|
| 87 | "memfs": "^3.2.2",
|
---|
| 88 | "node-sass": "^6.0.0",
|
---|
| 89 | "node-sass-glob-importer": "^5.3.2",
|
---|
| 90 | "npm-run-all": "^4.1.5",
|
---|
| 91 | "prettier": "^2.3.1",
|
---|
| 92 | "sass": "^1.34.1",
|
---|
| 93 | "semver": "^7.3.5",
|
---|
| 94 | "standard-version": "^9.3.0",
|
---|
| 95 | "style-loader": "^2.0.0",
|
---|
| 96 | "webpack": "^5.38.1"
|
---|
| 97 | },
|
---|
| 98 | "keywords": [
|
---|
| 99 | "sass",
|
---|
| 100 | "libsass",
|
---|
| 101 | "webpack",
|
---|
| 102 | "loader"
|
---|
| 103 | ]
|
---|
| 104 | }
|
---|