-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.54 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
{
"name": "github-upstream-bugfixes",
"title": "GitHub Upstream BugFixes",
"version": "1.1.0",
"description": "A Style that fixes (some) known upstream GitHub issues",
"license": "MIT",
"author": "StylishThemes",
"repository": "GitHub-Upstream-BugFixes",
"homepage": "https://github.com/StylishThemes/GitHub-Upstream-BugFixes",
"bugs": {
"url": "https://github.com/StylishThemes/GitHub-Upstream-BugFixes/issues/new/choose"
},
"main": "github-upstream-bugfixes.user.styl",
"private": true,
"engines": {
"node": ">= 14.16.0"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-silverwind": "^50.0.1",
"perfectionist": "^2.4.0",
"versions": "^9.3.0",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"updates": "^13.1.2"
},
"scripts": {
"authors": "bash tools/authors.sh",
"clean": "npm run lintfix && npm run perfectionist && node tools/fix-perfectionist.js",
"eslint": "eslint --quiet --color tools/*.js",
"lint": "npm run eslint && npm run stylelint",
"major": "versions -p -C major *.user.styl",
"minor": "versions -p -C minor *.user.styl",
"patch": "versions -p -C patch *.user.styl",
"perfectionist": "npx perfectionist github-upstream-bugfixes.user.styl --indentSize 2 --maxAtRuleLength 250",
"stylelint": "stylelint --color -- github-upstream-bugfixes.user.styl",
"lintfix": "stylelint --fix --color -- github-upstream-bugfixes.user.styl",
"test": "npm run eslint && npm run stylelint",
"update": "updates -cu && npm install"
}
}