UNPKG

3.01 kBJSONView Raw
1{
2 "name": "sass-loader",
3 "version": "10.0.4",
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": ">= 10.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",
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": "npm run build",
35 "release": "standard-version",
36 "defaults": "webpack-defaults"
37 },
38 "files": [
39 "dist"
40 ],
41 "peerDependencies": {
42 "webpack": "^4.36.0 || ^5.0.0",
43 "node-sass": "^4.0.0",
44 "sass": "^1.3.0",
45 "fibers": ">= 3.1.0"
46 },
47 "peerDependenciesMeta": {
48 "node-sass": {
49 "optional": true
50 },
51 "sass": {
52 "optional": true
53 },
54 "fibers": {
55 "optional": true
56 }
57 },
58 "dependencies": {
59 "klona": "^2.0.4",
60 "loader-utils": "^2.0.0",
61 "neo-async": "^2.6.2",
62 "schema-utils": "^3.0.0",
63 "semver": "^7.3.2"
64 },
65 "devDependencies": {
66 "@babel/cli": "^7.12.1",
67 "@babel/core": "^7.12.3",
68 "@babel/preset-env": "^7.12.1",
69 "@commitlint/cli": "^11.0.0",
70 "@commitlint/config-conventional": "^11.0.0",
71 "@webpack-contrib/defaults": "^6.3.0",
72 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
73 "babel-jest": "^26.6.0",
74 "bootstrap": "^4.5.3",
75 "bootstrap-sass": "^3.4.1",
76 "cross-env": "^7.0.2",
77 "css-loader": "^5.0.0",
78 "del": "^6.0.0",
79 "del-cli": "^3.0.1",
80 "enhanced-resolve": "^5.3.0",
81 "eslint": "^7.10.0",
82 "eslint-config-prettier": "^6.14.0",
83 "eslint-plugin-import": "^2.22.1",
84 "fibers": "^5.0.0",
85 "file-loader": "^6.1.0",
86 "foundation-sites": "^6.6.3",
87 "husky": "^4.3.0",
88 "jest": "^26.6.0",
89 "lint-staged": "^10.4.2",
90 "material-components-web": "^7.0.0",
91 "memfs": "^3.2.0",
92 "node-sass": "^4.14.1",
93 "npm-run-all": "^4.1.5",
94 "prettier": "^2.1.2",
95 "sass": "^1.27.0",
96 "standard-version": "^9.0.0",
97 "style-loader": "^2.0.0",
98 "webpack": "^5.2.0"
99 },
100 "keywords": [
101 "sass",
102 "libsass",
103 "webpack",
104 "loader"
105 ]
106}