-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.07 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
{
"name": "copy-on-select",
"displayName": "Copy On Select",
"description": "Copy the selected text without having to hit CTRL+C.",
"publisher": "dinhani",
"version": "0.0.7",
"license": "MIT",
"repository": "https://github.com/dinhani/vscode-copy-on-select",
"bugs": "https://github.com/dinhani/vscode-copy-on-select/issues",
"engines": {
"vscode": "^1.30.0"
},
"categories": [],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Copy On Select extension",
"properties": {
"copyOnSelect.copyOnKeyboardSelection": {
"type": "boolean",
"default": false,
"description": "Should copy the selected text when it was selected using the keyboard?"
},
"copyOnSelect.copyOnMouseSelection": {
"type": "boolean",
"default": true,
"description": "Should copy the selected text when it was selected using the mouse?"
},
"copyOnSelect.trimStart": {
"type": "boolean",
"default": false,
"description": "Should trim the start of the copied text?"
},
"copyOnSelect.trimEnd": {
"type": "boolean",
"default": true,
"description": "Should trim the end of the copied text?"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"debounce": "1.0.0"
},
"devDependencies": {
"typescript": "^2.1.5",
"vscode": "^1.1.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}