-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.42 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
{
"name": "github-blog-dark",
"title": "GitHub Blog Dark",
"version": "1.0.6",
"description": "A dark GitHub blog theme",
"license": "CC-BY-SA-4.0",
"author": "StylishThemes",
"repository": "GitHub-Blog-Dark",
"homepage": "https://github.com/StylishThemes/GitHub-Blog-Dark",
"bugs": {
"url": "https://github.com/StylishThemes/GitHub-Blog-Dark/issues"
},
"main": "github-blog-dark.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-silverwind": "^5.1.2",
"perfectionist": "^2.4.0",
"versions": "^7.0.5",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"updates": "^9.3.3"
},
"scripts": {
"authors": "bash tools/authors",
"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.css",
"minor": "versions -p -C minor *.user.css",
"patch": "versions -p -C patch *.user.css",
"perfectionist": "npx perfectionist github-blog-dark.user.css github-blog-dark.user.css --indentSize 2 --maxAtRuleLength 250",
"stylelint": "stylelint --color -- github-blog-dark.user.css",
"lintfix": "stylelint --fix --color -- github-blog-dark.user.css",
"test": "run eslint && npm run stylelint",
"update": "updates -cu && npm install"
}
}