forked from SAP/yeoman-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.22 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@vue",
"**/@vue/**",
"**/vue-cli-plugin-vuetify",
"**/vue-cli-plugin-vuetify/**",
"**/vuetify-loader",
"**/vuetify-loader/**",
"**/vue-jest",
"**/vue-jest/**",
"**/vue-loading-overlay",
"**/vue-loading-overlay**",
"**/@mdi",
"**/@mdi/**",
"**/material-design-icons-iconfont",
"**/material-design-icons-iconfont/**",
"**/@sap-devx",
"**/@sap-devx/**"
]
},
"scripts": {
"ci": "npm-run-all coverage:clean format:validate lint:validate legal:* ci:subpackages coverage:merge",
"ci:subpackages": "lerna run ci",
"compile": "lerna run clean && tsc --build",
"compile:watch": "lerna run clean && tsc --build --watch",
"coverage:clean": "rimraf ./coverage",
"coverage:merge": "lcov-result-merger \"./coverage/lcov*.info\" \"./coverage/lcov.info\"",
"format:fix": "prettier --print-width 120 --write \"**/*.@(js|ts|json|md|vue)\" --ignore-path=.gitignore",
"format:validate": "prettier --print-width 120 --check \"**/*.@(js|ts|json|md|vue)\" --ignore-path=.gitignore",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"lint:fix": "eslint . --ext=js,ts,vue --fix --max-warnings=0 --ignore-path=.gitignore",
"lint:validate": "eslint . --ext=js,ts,vue --max-warnings=0 --ignore-path=.gitignore",
"release:publish": "lerna publish from-git --yes --no-verify-access",
"release:version": "yarn worktree:update && lerna version --force-publish",
"release:version:auto": "yarn worktree:update && lerna version --force-publish --yes",
"version": "yarn format:fix",
"worktree:update": "yarn && git fetch && git rebase"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,json,md,vue}": [
"prettier --write --print-width 120"
],
"*.{ts,js,vue}": [
"eslint --fix --max-warnings=0 --ignore-pattern=!.*"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.14.0",
"chai": "4.2.0",
"coveralls": "2.11.16",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-vue": "^7.3.0",
"glob": "^7.1.6",
"husky": "4.3.6",
"lerna": "4.0.0",
"lint-staged": "10.5.3",
"make-dir": "^3.1.0",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"shx": "0.3.3",
"typescript": "4.1.3"
},
"version": "0.0.0"
}