-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.14 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": "dark-svtv-org-userstyle",
"title": "Dark svtv.org userstyle",
"version": "2.4.0",
"description": " Userstyle for svtv.org to make site dark, readable and have less css mistakes",
"license": "MIT",
"repository": "Mayurifag/dark-svtv-org-userstyle",
"homepage": "https://github.com/Mayurifag/dark-svtv-org-userstyle",
"main": "dark-svtv-org.user.css",
"engines": {
"node": ">=16"
},
"devDependencies": {
"markdownlint": "^0.26.2",
"markdownlint-cli": "^0.32.2",
"stylelint": "^14.14.0",
"stylelint-config-standard": "^29.0.0",
"updates": "^13.1.10",
"versions": "^10.0.5"
},
"scripts": {
"authors": "bash ./tools/authors.sh",
"lint": "npm run stylelint && npm run markdownlint",
"fix": "npm run stylelint --fix",
"major": "versions -C -p major dark-svtv-org.user.css",
"minor": "versions -C -p minor dark-svtv-org.user.css",
"patch": "versions -C -p patch dark-svtv-org.user.css",
"stylelint": "stylelint dark-svtv-org.user.css",
"markdownlint": "markdownlint '**/*.md' --ignore node_modules",
"test": "npm run lint",
"update": "updates -cu && npm install"
}
}