forked from SAP/ui5-language-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"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",
"lerna:version": "lerna version && yarn run cirlce:release",
"cirlce:release": "node ./scripts/trigger-release",
"lerna:publish": "lerna publish from-git --yes",
"ci": "npm-run-all format:validate ci:subpackages",
"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",
"clean": "lerna run clean",
"update-snapshots": "lerna run update-snapshots"
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@types/lodash": "4.14.157",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/klaw-sync": "6.0.0",
"@types/fs-extra": "9.0.1",
"chai": "4.2.0",
"deep-equal-in-any-order": "^1.0.24",
"eslint": "7.3.1",
"@typescript-eslint/parser": "3.4.0",
"@typescript-eslint/eslint-plugin": "3.4.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-eslint-comments": "3.2.0",
"husky": "4.2.5",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"mocha": "7.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.0.5",
"source-map-support": "0.5.19",
"typescript": "3.9.5",
"cz-conventional-changelog": "3.2.0",
"@commitlint/cli": "9.0.1",
"@commitlint/config-conventional": "9.0.1",
"rimraf": "3.0.2",
"@types/rimraf": "3.0.0",
"simple-git": "1.132.0",
"klaw-sync": "6.0.0",
"fs-extra": "9.0.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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"
]
}
}