-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 858 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 858 Bytes
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
{
"name": "yao-cli",
"private": true,
"repository": "https://github.com/yaoyao1987/yao-cli.git",
"author": "yaoyao1987 <yaolingyan1987@126.com>",
"license": "MIT",
"workspaces": [
"packages/@yao/*",
"packages/vue-cli-version-marker"
],
"scripts": {
"bootstrap": "node scripts/bootstrap.js",
"pretest": "yarn clean",
"lint": "eslint packages/**/*.js packages/**/bin/*",
"lint:fix": "eslint --fix packages/**/*.js packages/**/bin/*"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"commitizen": "^4.2.3",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.18.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"rimraf": "^3.0.2"
}
}