-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
90 lines (90 loc) · 2.24 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
{
"name": "vscode-duplicate",
"displayName": "Duplicate action",
"description": "Ability to duplicate files in VS Code",
"version": "1.2.1",
"publisher": "mrmlnc",
"license": "MIT",
"engines": {
"vscode": "^1.13.0"
},
"icon": "icon.png",
"homepage": "https://github.com/mrmlnc/vscode-duplicate/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mrmlnc/vscode-duplicate"
},
"keywords": [
"duplicate",
"copy",
"file",
"directory"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:duplicate.execute"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "duplicate.execute",
"title": "Duplicate file or directory"
}
],
"menus": {
"explorer/context": [
{
"command": "duplicate.execute"
}
],
"editor/title/context": [
{
"command": "duplicate.execute"
}
]
},
"configuration": {
"type": "object",
"title": "Duplicate Action Configuration",
"properties": {
"duplicate.openFileAfterCopy": {
"type": "boolean",
"default": true,
"description": "Automatically open newly copied files"
},
"duplicate.keepOriginalExtension": {
"type": "boolean",
"default": true,
"description": "Keep original extension if it not specified"
}
}
}
},
"devDependencies": {
"@types/fs-extra": "5.0.1",
"@types/lodash.escaperegexp": "^4.1.3",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.2",
"mocha": "^5.0.5",
"tslint": "^5.9.1",
"tslint-config-mrmlnc": "^1.0.0",
"typescript": "^2.8.1",
"vscode": "^1.1.14"
},
"dependencies": {
"fs-extra": "^5.0.0",
"lodash.escaperegexp": "^4.1.2"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"clean": "rimraf out",
"lint": "tslint \"src/**/*.ts\" -p . -t stylish",
"compile": "tsc",
"test": "mocha \"out/**/*.spec.js\" -s 0",
"build": "npm run clean && npm run lint && npm run compile && npm test",
"watch": "npm run clean && npm run lint & npm run compile -- --sourceMap --watch"
}
}