-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
{
"private": true,
"keywords": [
"phpcbf",
"php",
"linter",
"lint-staged"
],
"homepage": "https://github.com/nelson6e65/php-code-sniffer-helpers#readme",
"bugs": {
"url": "https://github.com/nelson6e65/php-code-sniffer-helpers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelson6e65/php-code-sniffer-helpers.git"
},
"license": "MIT",
"author": "Nelson Martell <[email protected]>",
"scripts": {
"prepare": "husky install",
"cs:fix": "prettier --write .",
"cs:lint": "prettier --check ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.php,!src/ComposerScripts.php": "composer cs:fix-filtered"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@prettier/plugin-xml": "^0.13.1",
"@semantic-release/changelog": "^6.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.10",
"semantic-release": "^24.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github"
]
}
}