-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@unicornware/brewfile",
"description": "Homebrew Bundle configuration file",
"license": "MIT",
"homepage": "https://github.com/unicornware/brewfile",
"repository": {
"type": "git",
"url": "https://github.com/unicornware/brewfile.git"
},
"bugs": {
"url": "https://github.com/unicornware/brewfile/issues"
},
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"scripts": {
"check:ci": "yarn check:format && yarn check:lint && yarn check:spelling && yarn dedupe --check",
"check:format": "prettier --check .",
"check:lint": "eslint --cache --exit-on-fatal-error --ext json,jsonc,md,yml --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:upgrades": "yarn upgrade-interactive",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "prettier --write .",
"fix:lint": "yarn check:lint --fix",
"postinstall": "chmod +x .husky/* && husky install"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@vates/toggle-scripts": "1.0.0",
"cspell": "6.18.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsonc": "2.5.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-markdownlint": "0.4.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-yml": "1.4.0",
"husky": "8.0.2",
"jsonc-eslint-parser": "2.1.0",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"prettier-plugin-sh": "0.12.8",
"trash-cli": "5.0.0",
"yaml-eslint-parser": "1.1.0"
},
"packageManager": "[email protected]",
"readme": "README.md"
}