This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "mescio-extension-pack",
"displayName": "Mescio Extension Pack",
"description": "Visual Studio Code Extension pack for Mescio",
"repository": {
"url": "[email protected]:mescio/mescio-extension-pack.git",
"type": "git"
},
"version": "0.3.2",
"publisher": "mescio-extension",
"icon": "images/logo.png",
"author": {
"name": "Andrew David Murray",
"email": "[email protected]"
},
"contributors": [
{
"name": "Madalina Tipter",
"email": "[email protected]"
}
],
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Extension Packs"
],
"extensionPack": [
"aaron-bond.better-comments",
"azemoh.one-monokai",
"dbaeumer.vscode-eslint",
"dsznajder.es7-react-js-snippets",
"eamodio.gitlens",
"formulahendry.docker-explorer",
"GrapeCity.gc-excelviewer",
"hollowtree.vue-snippets",
"mhutchie.git-graph",
"mikestead.dotenv",
"mrmlnc.vscode-scss",
"ms-azuretools.vscode-docker",
"ms-vscode.vscode-typescript-tslint-plugin",
"msjsdiag.debugger-for-chrome",
"octref.vetur",
"rafaelmaiolla.diff",
"rbbit.typescript-hero",
"ritwickdey.LiveServer",
"ryanluker.vscode-coverage-gutters",
"sidthesloth.html5-boilerplate",
"VisualStudioExptTeam.vscodeintellicode",
"wix.vscode-import-cost",
"xabikos.JavaScriptSnippets"
],
"scripts": {
"release": "release-it --no-git.tag --no-npm.publish --git.tagName='v${version}' --git.commitMessage='release v${version} to production' "
},
"release-it": {
"dist": {
"repo": "[email protected]:mescio/mescio-extension-pack.git"
},
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${latestTag}...HEAD --no-merges"
},
"github": {
"release": true,
"releaseName": "Release %s",
"tokenRef": "GITHUB_TOKEN"
},
"changelogCommand": "git log --pretty=format:'* %s (%h) - %an' --invert-grep --grep='bump to' [REV_RANGE]",
"hooks": {
"before:bump": "vsce publish ${version}"
}
},
"devDependencies": {
"release-it": "^12.4.3",
"vsce": "^1.71.0"
}
}