forked from webpack/webpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.52 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "webpack-cli-monorepo",
"version": "4.0.0-beta.3",
"description": "CLI for webpack & friends",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"engines": {
"node": ">=10.13.0"
},
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "del-cli \"*.tsbuildinfo\" \"packages/**/*.tsbuildinfo\" \"packages/!(webpack-cli)/lib/!(*.tpl)\" \"**/.yo-rc.json\"",
"prebuild": "yarn clean",
"build": "tsc --build",
"watch": "tsc --build --watch",
"prepsuite": "node scripts/prepareSuite.js",
"commit": "git-cz",
"lint:prettier": "prettier --list-different . \"!**/*.{js,ts}\" ",
"lint:eslint": "eslint --cache --ext .js --ext .ts .",
"lint": "yarn lint:eslint && yarn lint:prettier",
"fix": "yarn lint:eslint --fix && yarn lint:prettier --write",
"pretest": "yarn build && yarn lint && yarn prepsuite",
"test": "jest --reporters=default --reporters=jest-junit",
"test:cli": "jest test/ --reporters=default --reporters=jest-junit --forceExit",
"test:packages": "jest packages/ --reporters=default --reporters=jest-junit --forceExit",
"test:ci": "yarn test:cli && yarn test:packages",
"test:watch": "jest test/ packages/ --watch",
"test:smoke": "smoketests/smoketests.sh",
"publish:monorepo": "yarn format && yarn test && yarn build && lerna publish -m \"chore: monorepo version update\""
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"peerDependencies": {
"webpack": "4.x.x || 5.x.x"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@types/jest": "^25.1.4",
"@types/node": "13.9.8",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.26.0",
"chalk": "^3.0.0",
"commitlint": "^8.3.5",
"commitlint-config-cz": "^0.13.0",
"concat-stream": "^2.0.0",
"cz-customizable": "^6.2.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.0",
"get-port": "^5.1.1",
"git-cz": "^4.3.1",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-junit": "^10.0.0",
"jest-serializer-ansi": "^1.0.3",
"jest-watch-typeahead": "^0.4.2",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"prettier": "^2.0.2",
"readable-stream": "^3.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"yeoman-test": "^2.3.0"
}
}