-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
36 lines (36 loc) · 1.35 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": "stackoverflow-dark",
"title": "Stack Overflow Dark",
"version": "5.1.2",
"description": "Dark theme for Stack Overflow & most Stack Exchange network sites",
"license": "CC-BY-SA-4.0",
"repository": "https://github.com/StylishThemes/StackOverflow-Dark",
"homepage": "https://github.com/StylishThemes/StackOverflow-Dark",
"main": "stackoverflow-dark.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"cssmin": "^0.4.3",
"eslint": "^7.32.0",
"eslint-config-silverwind": "^40.0.3",
"perfectionist": "^2.4.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"updates": "^12.1.0",
"versions": "^8.4.7"
},
"scripts": {
"authors": "bash tools/authors",
"build": "node tools/update-usercss.js",
"clean": "npm run perfectionist && node tools/clean.js",
"lint": "eslint --fix tools/*.js && stylelint stackoverflow-dark.user.css themes/",
"patch": "versions -p -C patch stackoverflow-dark.user.css",
"minor": "versions -p -C minor stackoverflow-dark.user.css",
"major": "versions -p -C major stackoverflow-dark.user.css",
"perfectionist": "perfectionist stackoverflow-dark.user.css stackoverflow-dark.user.css --indentSize 2 --maxAtRuleLength 250",
"test": "npm run lint",
"update": "updates -cuU && npm install",
"usercss": "npm run build"
}
}