generated from creasico/laravel-package
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 966 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
{
"version": "0.3.7",
"private": true,
"packageManager": "[email protected]",
"author": "Creasi Developers <[email protected]>",
"repository": "github:creasico/laravel-package",
"scripts": {
"postinstall": "simple-git-hooks",
"release": "standard-version -s"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"standard-version": "^9.5.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{config,database,src,scripts,tests}/**/*.php": [
"php vendor/bin/pint --preset laravel"
]
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1",
"pre-commit": "pnpm exec lint-staged --allow-empty"
},
"standard-version": {}
}