-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 1.24 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
{
"name": "github-fixedheader",
"title": "GitHub Fixed Header",
"version": "1.2.18",
"description": "Add a pinned header on GitHub",
"license": "CC-BY-SA-4.0",
"main": "github-fixed-header.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-silverwind": "^4.2.3",
"perfectionist": "^2.4.0",
"semver": "^6.3.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"updates": "^9.0.1"
},
"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-fixed-header.user.css github-fixed-header.user.css --indentSize 2 --maxAtRuleLength 250",
"stylelint": "stylelint github-fixed-header.user.css",
"test": "npm run eslint && npm run stylelint",
"update": "updates -cu && npm install"
}
}