-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.81 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
{
"version": "3.0.1",
"name": "@felix_berlin/sass-butler",
"license": "ISC",
"description": "A collection of useful SCSS/SASS: mixins, functions and helpers.",
"homepage": "https://sass-butler.kasimir.dev",
"repository": {
"type": "git",
"url": "https://github.com/felix-berlin/sass-butler"
},
"bugs": {
"url": "https://github.com/felix-berlin/sass-butler/issues"
},
"author": {
"name": "Felix Scholze",
"email": "felix@webshaped.de",
"url": "https://webshaped.de"
},
"contributors": [
{
"name": "Felix Scholze",
"email": "felix@webshaped.de",
"url": "https://webshaped.de"
},
{
"name": "Sven George",
"url": "https://github.com/red-freak"
}
],
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/felix-berlin"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/felixberlin"
},
{
"type": "PayPal",
"url": "https://paypal.me/FelixScholze"
},
{
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/felixberlin"
}
],
"engines": {
"node": ">=12"
},
"scripts": {
"sassDoc": "sassdoc -v mixins/ functions/",
"lint": "stylelint \"**/*.{sass,scss}\"",
"lint:fix": "stylelint \"**/*.{sass,scss}\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:output": "sass tests/tests.scss:tests/dist/tests.css",
"test:output-watch": "sass --watch tests/tests.scss:tests/dist/tests.css",
"release": "semantic-release --branches master"
},
"keywords": [
"scss",
"sass",
"sass collection",
"sass mixins",
"sass functions",
"sass helpers",
"sass utilities",
"sass map collect function",
"sass random number function",
"sass type checking functions",
"sass px to rem function",
"sass breakpoint function",
"sass str starts with function",
"sass str ends with function",
"sass str contains function",
"sass str replace function",
"sass escape svg function",
"sass strip unit function",
"sass number invert function"
],
"packageManager": "pnpm@9.12.3",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"glob": "^11.0.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"postcss": "^8.4.39",
"postcss-scss": "^4.0.9",
"sass": "^1.77.8",
"sass-true": "^8.0.0",
"sassdoc": "^2.7.4",
"semantic-release": "^24.0.0",
"stylelint": "^16.7.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4"
}
}