-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
{
"name": "batch-rename",
"displayName": "batch-rename",
"description": "Extension for Visual Studio Code for advanced renaming of files, directories and their content.",
"version": "0.0.5",
"publisher": "karenpommeroy",
"repository": {
"type": "git",
"url": "https://github.com/karenpommeroy/batch-rename"
},
"engines": {
"vscode": "^1.35.0"
},
"license": "MIT",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:batchRename.renameFiles",
"onCommand:batchRename.renameFilesAndContent",
"onCommand:batchRename.renameFolderContent",
"onCommand:batchRename.duplicate"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "batchRename.renameFiles",
"title": "Batch Rename: File names"
},
{
"command": "batchRename.renameFilesAndContent",
"title": "Batch Rename: Files and content"
},
{
"command": "batchRename.renameFolderContent",
"title": "Batch Rename: Everything in directory"
},
{
"command": "batchRename.duplicate",
"title": "Batch Rename: Duplicate and rename"
}
],
"menus": {
"explorer/context": [
{
"when": "!explorerResourceIsFolder",
"command": "batchRename.renameFiles",
"group": "BatchRename@1"
},
{
"when": "!explorerResourceIsFolder",
"command": "batchRename.renameFilesAndContent",
"group": "BatchRename@1"
},
{
"when": "explorerResourceIsFolder",
"command": "batchRename.renameFolderContent",
"group": "BatchRename@1"
},
{
"when": "explorerResourceIsFolder",
"command": "batchRename.duplicate",
"group": "BatchRename@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"replace-in-file": "^4.1.0",
"lodash": "^4.17.15",
"vsce": "^1.67.1"
},
"devDependencies": {
"@types/lodash": "^4.14.134",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
}
}