-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.12 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": "mdn-dark",
"title": "MDN Dark",
"version": "1.2.4",
"description": "Dark theme for the Mozilla Developer Network",
"license": "GPL-3.0",
"repository": "https://github.com/AfroThundr3007730/MDN-Dark",
"homepage": "https://github.com/AfroThundr3007730/MDN-Dark",
"main": "mdn-dark.user.css",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-silverwind": "^26.0.0",
"perfectionist": "^2.4.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"updates": "^11.4.0",
"versions": "^8.4.3"
},
"scripts": {
"authors": "bash tools/authors.sh",
"clean": "npm run perfectionist && node tools/fix-perfectionist.js",
"lint": "eslint tools/*.js && stylelint mdn-dark.user.css",
"patch": "versions -p -C patch mdn-dark.user.css",
"minor": "versions -p -C minor mdn-dark.user.css",
"major": "versions -p -C major mdn-dark.user.css",
"perfectionist": "perfectionist mdn-dark.user.css mdn-dark.user.css --indentSize 2 --maxAtRuleLength 250",
"test": "npm run lint",
"update": "updates -cu && npm install"
}
}