-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "@valantic/scss-utils",
"version": "1.1.0",
"description": "A set of reusable scss utils",
"type": "module",
"lastDependencyUpdate": "12.03.2026",
"scripts": {
"release": "npm version patch -m 'Release %s' && git push --follow-tags",
"release:minor": "npm version minor -m 'Release %s' && git push --follow-tags",
"release:major": "npm version major -m 'Release %s' && git push --follow-tags",
"clean:caches": "rm -rf .stylelintcache node_modules/.cache",
"fix:stylelint": "npm run lint:stylelint -- --cache=false --config .stylelintrc.fix.js --fix",
"test": "npm run lint",
"lint": "npm run lint:stylelint",
"lint:stylelint": "stylelint 'scss/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git@github.com:valantic/scss-utils.git"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"keywords": [
"scss",
"valantic"
],
"author": "valantic CEC",
"license": "MIT",
"bugs": {
"url": "https://github.com/valantic/scss-utils/issues"
},
"homepage": "https://github.com/valantic/scss-utils",
"devDependencies": {
"sass": "~1.98.0",
"stylelint": "~17.4.0",
"stylelint-config-valantic": "~10.1.0"
},
"files": [
"scss"
]
}