forked from rubyide/vscode-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 859 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.6",
"lerna": "^3.16.4",
"semantic-release": "^17.3.1",
"semantic-release-vsce": "^3.0.1",
"vsce": "^1.83.0"
},
"engines": {
"node": ">=10.21.0"
},
"scripts": {
"build": "lerna run build",
"package": "mkdir -p build && rm -rf build/* && lerna run package",
"test": "lerna run test",
"watch": "lerna run watch"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}