-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "@multei/design",
"private": true,
"workspaces": {
"packages": [
"packages/themes",
"packages/tokens"
]
},
"description": "Design System for Multei!",
"scripts": {
"build": "lerna run build",
"bootstrap": "npm run lerna:install",
"commit": "git cz",
"deploy": "lerna publish",
"husky:prepush": "npm run test",
"lerna:install": "lerna bootstrap",
"postinstall": "npm run lerna:install",
"semantic-release": "lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multei/design.git"
},
"keywords": [
"multei",
"design"
],
"author": "Multei!",
"license": "ISC",
"bugs": {
"url": "https://github.com/multei/design/issues"
},
"homepage": "https://github.com/multei/design#readme",
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"commitizen": "4.2.4",
"cz-lerna-changelog": "2.0.3",
"husky": "7.0.2",
"lerna": "4.0.0",
"semantic-release": "17.4.7",
"semantic-release-monorepo": "7.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run husky:prepush"
}
}
}