-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "vscode-extensions",
"version": "0.0.0",
"description": "Monorepo for my VSCode extensions.",
"repository": "https://github.com/AndrewLeedham/vscode-extensions",
"author": "Andrew Leedham <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/release-notes-generator": "^9.0.0",
"husky": "^4.2.5",
"semantic-release-plus": "^18.0.3",
"semantic-release-vsce": "^3.0.1",
"vsce": "^1.77.0"
},
"resolutions": {
"mem": ">=4.0.0",
"minimist": ">=1.2.2",
"acorn": ">=7.1.1"
},
"scripts": {
"deploy": "yarn workspaces run semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
}
}