-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
102 lines (102 loc) · 2.28 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "carbon-devtools-collection",
"private": true,
"scripts": {
"build": "lerna run build --stream",
"watch": "lerna run watch --parallel",
"clean": "lerna run clean --stream && lerna clean --yes && rimraf node_modules",
"reset": "yarn cache clean && yarn clean && yarn install && yarn build",
"format": "lerna run format --stream",
"format:diff": "lerna run format:diff --stream",
"lint": "lerna run lint",
"lint:js": "lerna run lint:js --stream",
"lint:css": "lerna run lint:css --stream",
"test": "lerna run test --stream"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.4",
"lerna": "^8.1.8",
"lint-staged": "^15.2.9",
"rimraf": "^6.0.1"
},
"engines": {
"node": ">=18.x"
},
"license": "Apache-2.0",
"author": "IBM",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/devtools"
},
"bugs": {
"url": "https://github.com/carbon-design-system/devtools/issues/new",
"email": "[email protected]"
},
"homepage": "https://github.com/carbon-design-system/devtools#readme",
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
72
],
"body-max-line-length": [
2,
"always",
80
],
"scope-case": [
0,
"always",
"lower-case"
],
"type-enum": [
2,
"always",
[
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"test",
"style"
]
]
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint"
],
"**/*.scss": [
"prettier --write",
"stylelint --report-needless-disables --report-invalid-scope-disables --allow-empty-input"
],
"!(*sass).md": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}