-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.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
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
{
"name": "root",
"version": "1.0.0",
"description": "Vue模块化加载和公共方法",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/aceHubert/vue-async.git"
},
"scripts": {
"build": "lerna run build --sort --stream --scope=@vue-async/*",
"test": "jest --coverage --passWithNoTests",
"version": "lerna run build:version --sort --stream --scope=@vue-async/*",
"prepublishOnly": "yarn install --ignore-scripts && yarn changelog && yarn build && yarn test",
"release": "lerna publish",
"release:git": "lerna publish form-git",
"release:package": "lerna publish from-package",
"clean": "lerna clean --yes",
"lint": "lerna run lint --parallel --stream",
"lint:fix": "lerna run lint:fix --parallel",
"prettier": "node ./scripts/prettier.js",
"prettier:all": "node ./scripts/prettier.js write",
"changelog": "node ./scripts/genChangelog.js",
"commit": "git-cz"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.9.0",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"child_process": "^1.0.2",
"commitizen": "^4.0.3",
"concurrently": "^5.1.0",
"core-js": "^3.8.3",
"cross-env": "^6.0.3",
"cz-lerna-changelog": "^2.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^10.1.0",
"glob-gitignore": "^1.0.14",
"jest": "^26.0.0",
"jest-dom": "^3.1.2",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"less": "^4.1.2",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": "^10.2.0",
"postcss": "^8.4.12",
"prettier": "^2.0.5",
"rollup": "^1.27.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-license": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^26.0.0",
"ts-loader": "^8.0.3",
"ts-node": "^10.7.0",
"typescript": "^4.1.5",
"util": "^0.12.1",
"yorkie": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"gitHooks": {
"commit-msg": "commitlint -e -V",
"pre-commit": "lint-staged"
},
"workspaces": {
"packages": [
"packages/*",
"docs"
],
"nohoist": []
}
}