forked from SAP/xml-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.14 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.14 KB
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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"xml-toolkit/@xml-tools/language-server",
"xml-toolkit/@xml-tools/language-server/**"
]
},
"scripts": {
"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 coverage:merge legal:*",
"format:fix": "prettier --write --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
"format:validate": "prettier --check --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
"ci:subpackages": "lerna run ci",
"test": "lerna run test",
"coverage": "lerna run coverage",
"coverage:merge": "node ./scripts/merge-coverage",
"clean": "lerna run clean",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\""
},
"devDependencies": {
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@types/node": "10.17.15",
"coveralls": "3.1.0",
"make-dir": "3.1.0",
"glob": "7.1.6",
"chai": "4.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",
"typescript": "3.9.7",
"cz-conventional-changelog": "3.2.0",
"@commitlint/cli": "9.0.1",
"@commitlint/config-conventional": "9.0.1",
"rimraf": "3.0.2",
"simple-git": "2.15.0",
"fs-extra": "9.0.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"shx": "0.3.2"
},
"prettier": {
"plugins": [],
"pluginSearchDirs": []
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}