-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 2.7 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "version-inc",
"displayName": "Version Inc",
"description": "Increments the version in package.json file",
"version": "1.1.0",
"publisher": "willasm",
"author": {
"name": "William McKeever",
"email": "willmck63@gmail.com"
},
"license": "MIT - SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"keywords": [
"version",
"project",
"increment",
"decrement",
"increase",
"decrease",
"bump",
"control",
"update"
],
"activationEvents": [
"workspaceContains:package.json"
],
"bugs": {
"url": "https://github.com/willasm/version-inc/issues",
"email": "willmck63@gmail.com"
},
"homepage": "https://github.com/willasm/version-inc",
"repository": {
"type": "git",
"url": "https://github.com/willasm/version-inc.git"
},
"main": "src/extension.js",
"contributes": {
"commands": [
{
"command": "version-inc.version-inc",
"title": "Version Inc: Increment Package.json Version"
},
{
"command": "version-inc.version-dec",
"title": "Version Inc: Decrement Package.json Version"
},
{
"command": "version-inc.edit-files-list",
"title": "Version Inc: Edit Settings for Update Files"
},
{
"command": "version-inc.edit-example-files",
"title": "Version Inc: Edit Example Files"
}
],
"menus": {
"commandPalette": [
{
"command": "version-inc.version-inc",
"when": "version-inc.workspaceHasPackageJSON"
},
{
"command": "version-inc.version-dec",
"when": "version-inc.workspaceHasPackageJSON"
},
{
"command": "version-inc.edit-files-list",
"when": "version-inc.workspaceHasPackageJSON"
},
{
"command": "version-inc.edit-example-files",
"when": "version-inc.workspaceHasPackageJSON"
}
]
},
"configuration": [
{
"title": "Version Inc",
"properties": {
"version-inc.statusBarPrompt": {
"type": "boolean",
"default": false,
"description": "Prompt for choice of Increment or Decrement version from status bar button (Will use increment by default)"
},
"version-inc.useDisplayName": {
"type": "boolean",
"default": false,
"description": "Show displayName value on status bar button (Uses Name value otherwise)"
},
"version-inc.packageJsonPaths": {
"type": "array",
"default": [
"client",
"server"
],
"items": {
"type": "string"
},
"description": "Additional folders to search for package.json files"
}
}
}
],
"jsonValidation": [
{
"fileMatch": "version-inc-*.json",
"url": "./src/version-inc-schema.json"
}
]
},
"scripts": {},
"devDependencies": {}
}