-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "lerna-test",
"version": "0.0.0-development",
"private": true,
"repository": "git@github.com:mjzhang1993/lerna-test.git",
"author": "mjzhang1993 <mingjiazhang@yufuid.com>",
"license": "MIT",
"scripts": {
"lerna:create": "lerna create",
"lerna:build": "lerna run --stream --sort build",
"lerna:publish": "lerna publish",
"changelog": "lerna version --conventional-commits --no-push --no-git-tag-version",
"lerna": "lerna",
"clean": "lerna clean && rm -rf ./node_modules",
"cz": "cz",
"lint": "commitlint"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@yffed/core": "^0.2.2",
"commitizen": "^4.2.2",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cz-lerna-changelog": "^2.0.3",
"husky": "^4.3.6",
"lerna": "^3.22.1"
},
"main": "index.js",
"config": {
"commitizen": {
"path": "@mjz-test/cz-mjz-changelog"
}
}
}