-
-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.85 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sass-loader",
"version": "16.0.8",
"description": "Sass loader for webpack",
"keywords": [
"sass",
"libsass",
"webpack",
"loader"
],
"homepage": "https://github.com/webpack/sass-loader",
"bugs": "https://github.com/webpack/sass-loader/issues",
"repository": "webpack/sass-loader",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "J. Tangelder",
"main": "dist/cjs.js",
"files": [
"dist"
],
"scripts": {
"clean": "del-cli dist",
"prebuild": "npm run clean",
"build": "node -e \"require('node:fs').cpSync('src', 'dist', { recursive: true })\"",
"security": "npm audit --production",
"lint": "npm-run-all -l -p \"lint:**\" && npm run fmt:check",
"lint:code": "eslint --cache .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"fmt": "npm run fmt:check -- --write",
"fmt:check": "prettier --list-different --cache --ignore-unknown .",
"fix": "npm run fix:code && npm run fmt",
"fix:code": "npm run lint:code -- --fix",
"pretest": "npm run lint",
"test": "npm run test:base",
"test:base": "node --import ./test/setup-snapshots.mjs --test --test-force-exit --test-reporter=dot --test-reporter-destination=stdout --experimental-test-module-mocks",
"test:coverage": "npm run test:base -- --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage.lcov --test-coverage-include=\"src/**/*.js\"",
"prepare": "husky && npm run build",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"bootstrap-sass": "^3.4.1",
"bootstrap-v4": "npm:bootstrap@^4.5.3",
"bootstrap-v5": "npm:bootstrap@^5.3.7",
"cspell": "^8.19.4",
"css-loader": "^6.9.0",
"del": "^6.1.1",
"del-cli": "^5.1.0",
"enhanced-resolve": "^5.21.1",
"eslint": "^9.38.0",
"eslint-config-webpack": "^4.9.5",
"file-loader": "^6.2.0",
"foundation-sites": "^6.7.5",
"husky": "^9.1.3",
"lint-staged": "^15.5.2",
"material-components-web": "^9.0.0",
"memfs": "^4.57.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"sass": "^1.89.2",
"sass-embedded": "^1.89.2",
"style-loader": "^3.3.4",
"typescript": "^5.9.2",
"webpack": "^5.106.2"
},
"peerDependencies": {
"@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0",
"sass": "^1.3.0",
"sass-embedded": "*",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"sass": {
"optional": true
},
"sass-embedded": {
"optional": true
},
"webpack": {
"optional": true
}
},
"engines": {
"node": ">= 22.11.0"
}
}