forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.69 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"vscode-ui5-language-assistant/prettier",
"vscode-ui5-language-assistant/@prettier/plugin-xml",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server/**"
]
},
"scripts": {
"build:quick": "lerna run compile && lerna run bundle && lerna run package",
"release:version": "lerna version --force-publish",
"release:publish": "lerna publish from-package --yes",
"ci": "npm-run-all format:validate ci:subpackages coverage:merge legal:*",
"compile": "yarn run clean && tsc --build",
"compile:watch": "yarn run clean && tsc --build --watch",
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"format:validate": "prettier --check \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"lint": "eslint . --ext .ts --fix --max-warnings=0 --ignore-path=.gitignore",
"ci:subpackages": "lerna run ci",
"test": "lerna run test",
"coverage": "lerna run coverage",
"coverage:merge": "node ./scripts/merge-coverage",
"clean": "lerna run clean",
"update-snapshots": "lerna run update-snapshots",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "lint-staged",
"hooks:commit-msg": "commitlint -e",
"cset": "changeset",
"ci:version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/chai": "4.2.14",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/fs-extra": "9.0.11",
"@types/jest": "29.2.6",
"@types/jest-specific-snapshot": "0.5.5",
"@types/klaw-sync": "6.0.0",
"@types/lodash": "4.14.166",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.14.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"deep-equal-in-any-order": "1.0.28",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"fs-extra": "10.1.0",
"glob": "7.1.6",
"husky": "8.0.1",
"i18next": "19.0.2",
"jest": "29.5.0",
"jest-config": "29.5.0",
"jest-environment-node": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-esm-transformer": "1.0.0",
"jest-extended": "3.2.3",
"jest-junit": "15.0.0",
"jest-sonar": "0.2.16",
"jest-specific-snapshot": "3.0.0",
"klaw-sync": "6.0.0",
"lerna": "^7.0.2",
"lint-staged": "10.5.3",
"make-dir": "3.1.0",
"mock-fs": "^5.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.8.7",
"rimraf": "3.0.2",
"shx": "0.3.3",
"simple-git": "3.12.0",
"ts-jest": "29.0.5",
"ts-node": "8.5.2",
"source-map-support": "0.5.19",
"typescript": "4.9.4",
"esbuild": "0.17.12"
},
"lint-staged": {
"*.{js,ts,md,json}": [
"prettier --write"
],
"*.{ts}": [
"eslint --fix --max-warnings=0"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
]
}
}