-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@trystan2k/zsh-npm-plugin",
"version": "1.3.0",
"description": "A zsh plugin that add NPM custom alias",
"keywords": [
"trystan2k",
"terminal",
"macos",
"linux",
"npm"
],
"homepage": "https://github.com/trystan2k/zsh-npm-plugin#readme",
"bugs": {
"url": "https://github.com/trystan2k/zsh-npm-plugin/issues"
},
"repository": "github:trystan2k/zsh-npm-plugin",
"license": "MIT",
"author": {
"name": "Thiago Mendonca",
"email": "[email protected]"
},
"scripts": {
"clean": "rm -rf node_modules",
"cz": "git-cz",
"lint": "bash shellcheck.sh",
"prepare": "husky",
"push": "git push && git push --tags",
"release": "standard-version",
"release:as": "standard-version --release-as"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
100
]
}
},
"lint-staged": {
"*.+(sh)": [
"npm run lint"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"prettier": {
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sort-package-json": "^2.10.0",
"standard-version": "^9.5.0"
},
"standard-version": {
"releaseCommitMessageFormat": "chore: release {{currentTag}}"
}
}