-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 992 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 992 Bytes
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
{
"name": "@yetanothercode/root",
"version": "0.4.0",
"private": true,
"workspaces": [
"packages/**",
"!packages/vscode-extension-pack"
],
"author": "Ciro Ferreira da Cruz <ciro.cfc@gmail.com>",
"repository": "https://github.com/yetanothercode/yet-another",
"scripts": {
"postinstall": "yarn simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged",
"commit-msg": "yarn commitlint --edit $1"
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@yetanothercode/commitlint-config": "workspace:packages/commitlint-config",
"@yetanothercode/prettier-config": "workspace:packages/prettier-config",
"lerna": "^8.2.2",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.13.0"
},
"engines": {
"node": ">=12 || >=14",
"npm": ">=6"
},
"license": "MIT",
"packageManager": "yarn@4.9.2"
}