-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.99 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
{
"name": "vscode-copy-paste",
"displayName": "vscode-copy-paste",
"description": "A better copy-paste for Visual Studio Code",
"version": "0.1.0",
"publisher": "duydao",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.duydao.copy-paste.pasteByInputBox",
"onCommand:extension.duydao.copy-paste.pasteByClipboard",
"onCommand:extension.duydao.copy-paste.pasteByTextFile",
"onCommand:extension.duydao.copy-paste.pasteByJavaScriptFile",
"onCommand:extension.duydao.copy-paste.openTextFile",
"onCommand:extension.duydao.copy-paste.openJavaScriptFile"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.duydao.copy-paste.pasteByInputBox",
"title": "Better copy-paste: By input box"
},
{
"command": "extension.duydao.copy-paste.pasteByClipboard",
"title": "Better copy-paste: By clipboard"
},
{
"command": "extension.duydao.copy-paste.pasteByTextFile",
"title": "Better copy-paste: By Text file"
},
{
"command": "extension.duydao.copy-paste.pasteByJavaScriptFile",
"title": "Better copy-paste: By JavaScript file"
},
{
"command": "extension.duydao.copy-paste.openTextFile",
"title": "Better copy-paste: Open Text file"
},
{
"command": "extension.duydao.copy-paste.openJavaScriptFile",
"title": "Better copy-paste: Open JavaScript file"
}
],
"configuration": {
"title": "copy-paste configuration",
"properties": {
"copy-paste.paste-from-file.txt.path": {
"type": "array",
"default": [],
"description": "Paste text from this text file."
},
"copy-paste.paste-from-file.js.path": {
"type": "array",
"default": [],
"description": "Paste text generated by this JavaScript file."
},
"copy-paste.paste-from-file.js.timeout": {
"type": "number",
"default": 1,
"description": "JavaScript execution timeout in seconds."
},
"copy-paste.open.column": {
"type": "number",
"default": 1,
"description": "The opened file will be shown in this column."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/lodash": "^4.14.45",
"@types/mathjs": "0.0.32",
"@types/mocha": "^2.2.32",
"@types/moment": "^2.13.0",
"@types/node": "^6.0.40",
"@types/numeral": "0.0.18",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"copy-paste": "^1.3.0",
"lodash": "^4.17.4",
"mathjs": "^3.8.1",
"moment": "^2.17.1",
"numeral": "^2.0.4"
}
}