-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 917 Bytes
/
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
{
"name": "@ahmed/dotfiles",
"version": "0.0.0",
"private": true,
"description": "My dotfiles",
"keywords": [
"dotfiles",
"zsh",
"tmux",
"unix",
"neovim"
],
"repository": "https://github.com/github:AhmedAbdulrahman/dotfiles",
"author": "Ahmed Abdulrahman",
"scripts": {
"prepare": "husky install",
"stylua:fix": "stylua",
"lint:fix": "luacheck",
"prettier:fix": "prettier . --write",
"prettier": "prettier . --check",
"release": "standard-version"
},
"lint-staged": {
"*.lua": [
"yarn stylua:fix",
"yarn lint:fix"
],
"*.{json,md,css,html}": [
"yarn prettier:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"standard-version": "^9.3.2",
"commitizen": "^4.3.0"
},
"license": "MIT"
}