-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "@geniem/geniem-rules-stylelint",
"version": "1.0.4",
"description": "Geniem Oy stylelint rules package",
"private": false,
"main": "index.js",
"author": "Geniem Oy",
"license": "MIT",
"bugs": {
"url": "https://github.com/devgeniem/geniem-rules-stylelint/issues"
},
"homepage": "https://github.com/devgeniem/geniem-rules-stylelint#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "stylelint tests",
"find-new-rules": "stylelint-find-new-rules",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it",
"release-dry": "release-it --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgeniem/geniem-rules-stylelint.git"
},
"dependencies": {
"@wordpress/eslint-plugin": "^9.2.0",
"eslint": "^7.32.0",
"eslint-config-stylelint": "^13.1.1",
"jest": "^27.3.1",
"postcss": "^8.4.5",
"postcss-bem-linter": "^3.3.0",
"postcss-scss": "^4.0.2",
"postcss-sorting": "^6.0.0",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-scss": "^3.21.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^2.3.0",
"release-it": "^14.11.6",
"stylelint-find-new-rules": "^3.0.2"
},
"stylelint": {
"extends": "./index.js"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}",
"requireBranch": "main"
},
"github": {
"release": true,
"web": true
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md",
"addUnreleased": true,
"addVersionUrl": true
}
}
},
"files": [
"index.js",
".eslintrc.js",
".editorconfig",
".stylelintignore",
"!.DS_Store"
],
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"lint"
]
}