forked from AILHC/EasyGameFrameworkOpen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.95 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
{
"name": "easygameclientframework",
"description": "base typescript a EasyGameClientFramework ",
"repository": "https://github.com/AILHC/EasyGameFrameworkOpen.git",
"author": "Tide Li <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"transed-packages/*",
"tool-packages/*"
],
"packages": [
"packages/*",
"examples/*",
"transed-packages/*",
"tool-packages/*"
],
"scripts": {
"//梳理版本不推送": "",
"vcnp": "lerna version --conventional-commits --no-push --git-remote github --force-git-tag --include-merged-tags",
"//梳理版本推送": "",
"vc": "lerna version --conventional-commits --git-remote origin --force-git-tag --include-merged-tags",
"//构建所有包": "",
"ba": "lerna exec --concurrency 2 --no-private --include-dependencies --no-bail --stream -- yarn build:all",
"//发布所有包到npmjs": "",
"pa": "lerna exec --concurrency 2 --no-private --parallel --no-bail --stream -- npm publish --registry https://registry.npmjs.org",
"//清理": "",
"clean_nm": "lerna clean",
"//提交": "",
"cm": "git-cz",
"//install钩子": "",
"preinstall": "node ./scripts/checkYarn.js",
"//生成changelog": "",
"gcl": "lerna exec --concurrency 1 --stream -- conventional-changelog --preset angular --release-count 0 --commit-path ^%CD^% --pkg ^%CD^%/package.json --outfile ^%CD^%/CHANGELOG.md --lerna-package ^%LERNA_PACKAGE_NAME^%",
"//生成api文档": "",
"gapi": "rimraf docs/api && typedoc --options tools/typedoc/typedoc.js",
"//复制文档": "",
"cpdoc": "node ./scripts/copyDocs.js",
"//测试覆盖率": "",
"tc": "jest --coverage",
"//安装husky": "",
"ihusky": "husky install",
"//添加hook": "",
"addHuskyHook": "husky add .husky/commit-msg \"yarn commitlint --edit $1\" && husky add .husky/pre-commit \"npm run lint-staged\"",
"lint-staged": "lint-staged"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --config ./.prettierrc.yml --ignore-path ./.prettierignore --allow-empty --write"
]
},
"devDependencies": {
"@ailhc/egf-cli": "^1.6.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@oasis-engine/typedoc-theme": "^0.0.2",
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@types/jest": "^24.0.23",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cpr": "^3.0.1",
"cross-var": "^1.1.0",
"cz-conventional-changelog": "^3.3.0",
"cz-lerna-changelog": "^2.0.3",
"jest": "^24.9.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"make-dir-cli": "^2.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^24.2.0",
"typedoc": "0.19.2",
"typedoc-plugin-remove-references": "^0.0.5",
"typescript": "^3.7.3",
"husky": "^6.0.0"
}
}