-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
38 lines (38 loc) · 1.35 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
{
"name": "easywebpack",
"version": "5.0.0",
"private": true,
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-eslint": "^7.0.0",
"lerna": "^3.22.1"
},
"workspaces": [
"packages/framework/*",
"packages/plugin/*",
"packages/cli/*"
],
"scripts": {
"boot": "lerna workspace",
"clean": "lerna clean",
"fix": "lerna run fix",
"fix:res": "lerna run fix --scope @easy-team/res-cli",
"fix:ves": "lerna run fix --scope ves-cli",
"fix:tool": "lerna run fix --scope webpack-tool",
"fix:cli": "lerna run fix --scope easywebpack-cli",
"fix:easy": "lerna run fix --scope easywebpack",
"fix:vue": "lerna run fix --scope easywebpack-vue",
"fix:react": "lerna run fix --scope easywebpack-react",
"fix:js": "lerna run fix --scope easywebpack-js",
"test": "lerna run test",
"test:cli": "lerna run test --scope easywebpack-cli",
"test:res": "lerna run test --scope @easy-team/res-cli",
"test:ves": "lerna run test --scope ves-cli",
"test:easy": "lerna run test --scope easywebpack",
"test:vue": "lerna run test --scope easywebpack-vue",
"test:react": "lerna run test --scope easywebpack-react",
"test:js": "lerna run test --scope easywebpack-js",
"test:tool": "lerna run test --scope webpack-tool",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
}
}