-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
157 lines (157 loc) · 4.43 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "workspace-config-plus",
"displayName": "Workspace Config+",
"description": "VS Code extension for improved workspace configuration",
"main": "src/index.js",
"version": "0.2.5",
"license": "MIT",
"preview": true,
"private": true,
"publisher": "Swellaby",
"icon": "img/icon.png",
"galleryBanner": {
"color": "#18bc9c",
"theme": "dark"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"languages": [
{
"id": "jsonc",
"filenames": [
"settings.local.json",
"settings.shared.json",
"launch.local.json",
"launch.shared.json",
"tasks.local.json",
"tasks.shared.json"
]
}
],
"jsonValidation": [
{
"fileMatch": "/.vscode/settings.shared.json",
"url": "vscode://schemas/settings/folder"
},
{
"fileMatch": "/.vscode/settings.local.json",
"url": "vscode://schemas/settings/folder"
},
{
"fileMatch": "/.vscode/launch.shared.json",
"url": "vscode://schemas/launch"
},
{
"fileMatch": "/.vscode/launch.local.json",
"url": "vscode://schemas/launch"
},
{
"fileMatch": "/.vscode/tasks.shared.json",
"url": "vscode://schemas/tasks"
},
{
"fileMatch": "/.vscode/tasks.local.json",
"url": "vscode://schemas/tasks"
}
],
"configuration": {
"type": "object",
"title": "Workspace Config+",
"properties": {
"workspaceConfigPlus.arrayMerge": {
"description": "Defines the merge behavior to use for arrays",
"type": "string",
"scope": "resource",
"default": "combine",
"enum": [
"combine",
"overwrite"
],
"enumDescriptions": [
"Performs a deep merge of array-type properties overlapping in both local and shared user settings, where the arrays are combined",
"If both the local and shared files define a value for the same array-type property, then the array value in the local file is used and the shared array value is ignored"
]
}
}
}
},
"keywords": [
"local settings",
"shared settings",
"shared",
"local",
"configuration",
"workspace configuration",
"config",
"config plus",
"configuration plus",
"workspace config plus",
"workspace configuration plus",
"config +",
"configuration +",
"workspace config +",
"workspace configuration +"
],
"engines": {
"node": ">=12",
"vscode": "^1.49.0"
},
"homepage": "https://github.com/swellaby/vscode-workspace-config-plus",
"bugs": {
"url": "https://github.com/swellaby/vscode-workspace-config-plus"
},
"repository": {
"type": "git",
"url": "https://github.com/swellaby/vscode-workspace-config-plus.git"
},
"author": {
"email": "opensource@swellaby.com",
"name": "Swellaby",
"url": "https://swellaby.com"
},
"contributors": [
{
"email": "opensource@swellaby.com",
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"c8": "^8.0.1",
"chai": "^4.3.10",
"eslint": "^8.48.0",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"vsce": "^2.15.0"
},
"dependencies": {
"jsonc-parser": "^3.2.0",
"deepmerge": "^4.3.1"
},
"scripts": {
"build": "npm test",
"clean": "rimraf .testresults .coverage .vsix",
"coverage": "npm run coverage:unit",
"coverage:unit": "c8 -c tests/unit/.c8rc.json npm run test:unit",
"test": "npm run test:unit",
"test:unit": "mocha --config tests/unit/.mocharc.yml",
"format:fix": "prettier --write \"**/*.@(js|md|json|yml)\"",
"format:check": "prettier --check \"**/*.@(js|md|json|yml)\"",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js",
"prepackage:vsix": "mkdirp .vsix",
"package:vsix": "vsce package -o .vsix",
"publish:vsix": "vsce publish --packagePath .vsix/$npm_package_name-$npm_package_version.vsix",
"publish:vsix:windows": "vsce publish --packagePath .vsix/%npm_package_name%-%npm_package_version%.vsix",
"publish:ext": "vsce publish patch",
"vsce:login": "vsce login swellaby",
"vsce": "vsce"
}
}