-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "github-tab-size",
"title": "GitHub Tab Size",
"version": "1.0.4",
"description": "Userstyle to set tab sizes on GitHub",
"repository": "StylishThemes/GitHub-tab-size",
"license": "CC-BY-SA-4.0",
"homepage": "https://github.com/StylishThemes/GitHub-tab-size",
"main": "github-tab-size.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-silverwind": "^5.1.2",
"perfectionist": "^2.4.0",
"semver": "^7.1.1",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"updates": "^9.3.3",
"versions": "7.0.5"
},
"scripts": {
"authors": "bash tools/authors",
"clean": "npm run perfectionist && node tools/fix-perfectionist.js",
"lint": "eslint . && stylelint *.css",
"major": "npm run lint && npm run clean && versions -p -d -C major *.css",
"minor": "npm run lint && npm run clean && versions -p -d -C minor *.css",
"patch": "npm run lint && npm run clean && versions -p -d -C patch *.css",
"perfectionist": "perfectionist github-tab-size.user.css github-tab-size.user.css --indentSize 2 --maxAtRuleLength 250",
"test": "npm run lint",
"update": "updates -cu && npm install"
}
}