forked from mrmlnc/vscode-duplicate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
{
"name": "vscode-duplicate",
"displayName": "Duplicate file",
"description": "Ability to duplicate files in VS Code",
"version": "1.0.0",
"publisher": "mrmlnc",
"license": "MIT",
"engines": {
"vscode": "^1.3.0"
},
"icon": "icon.svg",
"homepage": "https://github.com/mrmlnc/vscode-duplicate/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mrmlnc/vscode-duplicate"
},
"keywords": [
"duplicate",
"copy",
"files",
"file"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:duplicate.execute"
],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "duplicate.execute",
"title": "Duplicate file"
}],
"menus": {
"explorer/context": [{
"command": "duplicate.execute",
"group": "navigation"
}]
}
},
"devDependencies": {
"vscode": "^0.11.0",
"xo": "^0.16.0"
},
"dependencies": {
"co": "4.6.0",
"cp-file": "3.1.0",
"lodash.escaperegexp": "4.1.1"
},
"scripts": {
"test": "xo"
},
"xo": {
"space": true,
"rules": {
"no-var": 2,
"prefer-const": [2, { "destructuring": "all" }],
"space-before-function-paren": [2, "never"],
"babel/arrow-parens": [2, "always"],
"babel/object-curly-spacing": [2, "always"],
"babel/generator-star-spacing": [2, "after"]
},
"envs": [
"node"
]
}
}