-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "stylelint-config-sass-guidelines",
"version": "12.1.0",
"description": "Sharable stylelint config based on https://sass-guidelin.es/",
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-scss",
"scss",
"sass",
"guidelines",
"lint",
"linter"
],
"author": "Brett Jankord",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bjankord/stylelint-config-sass-guidelines.git"
},
"homepage": "https://github.com/bjankord/stylelint-config-sass-guidelines#readme",
"bugs": {
"url": "https://github.com/bjankord/stylelint-config-sass-guidelines/issues"
},
"engines": {
"node": ">=18.12.0"
},
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"@stylistic/stylelint-plugin": "^3.0.1",
"postcss-scss": "^4.0.9",
"stylelint-scss": "^6.2.1"
},
"peerDependencies": {
"postcss": "^8.4.21",
"stylelint": "^16.1.0"
},
"devDependencies": {
"postcss": "^8.4.21",
"stylelint": "^16.1.0"
},
"scripts": {
"release:major": "npm test && npm version major -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:minor": "npm test && npm version minor -m \"Released version %s\" && npm publish && git push --follow-tags",
"release:patch": "npm test && npm version patch -m \"Released version %s\" && npm publish && git push --follow-tags",
"test": "node --test"
}
}