forked from carbon-design-system/carbon-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.56 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
{
"name": "carbon-platform-monorepo",
"version": "0.0.0",
"description": "Carbon platform monorepo",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/carbon-platform.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/carbon-design-system/carbon-platform/issues"
},
"homepage": "https://github.com/carbon-design-system/carbon-platform#readme",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"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",
"style",
"test"
]
]
}
},
"scripts": {
"all:build": "lerna run build",
"packages:build": "lerna run --no-private build",
"services:build": "lerna run --parallel --scope='@carbon-platform/*-service' build",
"nightly": "lerna publish --conventional-commits --include-merged-tags --yes",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"husky": "^7.0.0",
"lerna": "^4.0.0"
}
}