-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "@cirocfc/yet-another-root",
"version": "0.3.0",
"private": true,
"workspaces": [
"packages/yet-another-prettier-config",
"packages/yet-another-commitlint-config",
"packages/yet-another-github-branch-protection-tool"
],
"author": "Ciro Ferreira da Cruz <ciro.cfc@gmail.com>",
"repository": "https://github.com/cirocfc/yet-another",
"scripts": {
"release": "lerna publish --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@cirocfc/yet-another-commitlint-config": "workspace:packages/yet-another-commitlint-config",
"@cirocfc/yet-another-github-branch-protection-tool": "workspace:packages/yet-another-github-branch-protection-tool",
"@cirocfc/yet-another-prettier-config": "workspace:packages/yet-another-prettier-config",
"@commitlint/cli": "^11.0.0",
"conventional-changelog": "^3.1.23",
"conventional-changelog-conventionalcommits": "^4.4.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=12 || >=14",
"npm": ">=6",
"yarn": ">=2"
},
"license": "MIT",
"packageManager": "yarn@3.0.0"
}