-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.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
{
"name": "github-compact-feed",
"title": "GitHub Compact Feed",
"version": "1.2.3",
"description": "Compact and hide details in the news feed",
"license": "CC-BY-SA-4.0",
"repository": "https://github.com/StylishThemes/GitHub-Compact-Feed",
"homepage": "https://github.com/StylishThemes/GitHub-Compact-Feed",
"main": "github-compact-feed.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-silverwind": "^3.0.2",
"perfectionist": "^2.4.0",
"semver": "^6.1.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"updates": "^8.0.3"
},
"scripts": {
"authors": "bash tools/authors",
"clean": "npm run perfectionist && node tools/fix-perfectionist.js",
"eslint": "eslint --quiet --color tools/*.js",
"lint": "npm run eslint && npm run stylelint",
"major": "node tools/bump-version.js major && git add . && npm version -f major",
"minor": "node tools/bump-version.js minor && git add . && npm version -f minor",
"patch": "node tools/bump-version.js patch && git add . && npm version -f patch",
"perfectionist": "perfectionist github-compact-feed.user.css github-compact-feed.user.css --indentSize 2 --maxAtRuleLength 250",
"stylelint": "stylelint --color -- github-compact-feed.user.css",
"test": "npm run eslint && npm run stylelint",
"update": "updates -cu && npm install",
"usercss": "node tools/update-usercss.js"
}
}