This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
181 lines (181 loc) · 7.12 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "vscode-migrate",
"displayName": "VSCode Migrate",
"description": "Migrate files semi-autonomously.",
"version": "1.0.5",
"publisher": "TIStechnischeInformationssystemeGmbH",
"license": "GPL-3.0",
"icon": "logo.png",
"repository": {
"url": "https://github.com/tis-gmbh/vscode-migrate",
"type": "git"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-migrate.show-change",
"onFileSystem:match"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-migrate.apply-change",
"title": "VSCode Migrate: Apply Change",
"icon": "$(check)",
"category": ""
},
{
"command": "vscode-migrate.apply-well-covered-matches",
"title": "VSCode Migrate: Apply Well Covered Changes",
"icon": "doublecheck.svg"
},
{
"command": "vscode-migrate.start-migration",
"title": "VSCode Migrate: Start Migration",
"icon": "$(run)"
},
{
"command": "vscode-migrate.stop-migration",
"title": "VSCode Migrate: Stop Migration",
"icon": "$(stop)"
},
{
"command": "vscode-migrate.debug-migration-script-process",
"title": "VSCode Migrate: Debug Migration Script",
"icon": "$(bug)"
},
{
"command": "vscode-migrate.kill-migration-script-process",
"title": "VSCode Migrate: Kill Migration Script Process",
"icon": "$(close)"
}
],
"menus": {
"editor/title": [
{
"command": "vscode-migrate.apply-change",
"when": "isInDiffEditor && resourceScheme == match",
"group": "navigation"
}
],
"view/title": [
{
"command": "vscode-migrate.apply-well-covered-matches",
"when": "view == vscode-migrate.well-covered-matches && vscode-migrate.migrationRunning && vscode-migrate.hasWellCoveredMatches",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "vscode-migrate.apply-change",
"when": "vscode-migrate.migrationRunning && resourceScheme == match"
},
{
"command": "vscode-migrate.apply-well-covered-matches",
"when": "vscode-migrate.migrationRunning && vscode-migrate.hasWellCoveredMatches"
},
{
"command": "vscode-migrate.start-migration",
"when": "!vscode-migrate.migrationRunning"
},
{
"command": "vscode-migrate.stop-migration",
"when": "vscode-migrate.migrationRunning"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "migrate",
"title": "Migrate",
"icon": "$(arrow-swap)"
}
]
},
"viewsWelcome": [
{
"view": "vscode-migrate.well-covered-matches",
"contents": "In order to use migrate changes, create a migration script in .vscode/migrations/ and then run the 'Start Migration' command or click this button.\n[Start Migration](command:vscode-migrate.start-migration)",
"when": "!vscode-migrate.migrationRunning"
},
{
"view": "vscode-migrate.well-covered-matches",
"contents": "No well covered matches left. The view below shows the remaining, uncovered matches, we recommend you improve their coverage before applying them.",
"when": "vscode-migrate.migrationRunning"
},
{
"view": "vscode-migrate.all-matches",
"contents": "In order to use migrate changes, create a migration script in .vscode/migrations/ and then run the 'Start Migration' command or click this button.\n[Start Migration](command:vscode-migrate.start-migration)"
}
],
"views": {
"migrate": [
{
"id": "vscode-migrate.well-covered-matches",
"name": "Well Covered Matches"
},
{
"id": "vscode-migrate.all-matches",
"name": "All Matches"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint src --ext ts",
"pretest": "npm run compile-tests",
"test": "node ./out/test/runTest.js",
"pretestWithCoverage": "npm run compile-tests",
"testWithCoverage": "COVERAGE=1 node ./out/test/runTest.js --coverage"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/diff": "^5.0.3",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/jquery": "^3.5.16",
"@types/lcov-parse": "^1.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.x",
"@types/vscode": "^1.79.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vscode/test-electron": "^2.3.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eol": "^0.9.1",
"eslint": "^8.42.0",
"fs-extra": "^11.1.1",
"glob": "^10.2.7",
"mocha": "^10.2.0",
"mocha-suppress-logs": "^0.3.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"umd-compat-loader": "^2.1.2",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@asmartbear/diff-merge": "^1.0.7",
"@types/webpack-env": "^1.18.1",
"inversify": "^6.0.1",
"lcov-parse": "^1.0.0",
"matched": "^5.0.1",
"nyc": "^15.1.0",
"reflect-metadata": "^0.1.13",
"worker-rpc": "^0.2.0"
}
}