forked from StylishThemes/StackOverflow-Dark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.58 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.58 KB
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": "3.2.7",
"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",
"devDependencies": {
"cssmin": "^0.4.3",
"eslint": "^5.11.1",
"eslint-config-silverwind": "^2.0.14",
"fs-extra": "^7.0.1",
"perfectionist": "^2.4.0",
"semver": "^5.6.0",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"updates": "^6.0.3"
},
"scripts": {
"authors": "bash tools/authors",
"build": "node tools/add-themes.js && node tools/update-usercss.js",
"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 stackoverflow-dark.user.css stackoverflow-dark.user.css --indentSize 2 --maxAtRuleLength 250",
"stylelint": "stylelint --quiet --color -- stackoverflow-dark.user.css",
"test": "npm run eslint && npm run stylelint",
"update": "updates -cu && npm install",
"usercss": "node tools/add-themes.js && node tools/update-usercss.js"
}
}