-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
102 lines (102 loc) · 3.25 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",
"version": "0.0.0",
"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": "shx rm -rf ./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",
"prepare": "husky install",
"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": {
"@sap-devx/webview-rpc": "0.4.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"chai": "4.2.0",
"conventional-changelog-cli": "^5.0.0",
"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": "9.0.10",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"make-dir": "4.0.0",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "3.2.5",
"shx": "0.3.4",
"typescript": "~4.5.0"
}
}