-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
134 lines (134 loc) · 3.69 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "vscode-exec-node",
"displayName": "Node.js Exec",
"description": "Execute the current file or your selected code with node.js.",
"version": "0.5.6",
"publisher": "miramac",
"repository": {
"type": "git",
"url": "https://github.com/Miramac/vscode-exec-node.git"
},
"license": "ISC",
"engines": {
"vscode": "^1.0.0"
},
"icon": "images/node-exec-logo.png",
"categories": [
"Other"
],
"keywords": [
"javascript",
"node.js",
"node"
],
"activationEvents": [
"onCommand:extension.miramac.node.exec"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.miramac.node.exec",
"title": "Execute Node.js"
}
],
"keybindings": [
{
"command": "extension.miramac.node.exec",
"key": "F8"
},
{
"command": "extension.miramac.node.cancel",
"key": "F9"
}
],
"configuration": {
"type": "object",
"title": "Node Exec configurations",
"properties": {
"miramac.node.cwd": {
"type": "string",
"default": "${execPath}",
"description": "Set the working directory of the Node.js process"
},
"miramac.node.program": {
"type": ["string", "null"],
"default": null,
"description": "File to execute (comming soon)"
},
"miramac.node.clearOutput": {
"type": "boolean",
"default": true,
"description": "Clear output before execution"
},
"miramac.node.showInfo": {
"type": "boolean",
"default": true,
"description": "Show start and end info"
},
"miramac.node.showStdout": {
"type": "boolean",
"default": true,
"description": "Show console output"
},
"miramac.node.showStderr": {
"type": "boolean",
"default": true,
"description": "Show errors"
},
"miramac.node.terminalMode": {
"type": "boolean",
"default": false,
"description": "Use the integrated terminal"
},
"miramac.node.nodeBin": {
"type": "string",
"default": "node",
"description": "Node binary"
},
"miramac.node.includeCode": {
"type": ["string", "null"],
"default": null,
"description": "Some code that is executed with each run"
},
"miramac.node.executeFileOrSelection": {
"type": "string",
"default": "both",
"description": "Execute always the file ('file') only selected code ('selection') or both ('both')"
},
"miramac.node.outputWindowName": {
"type": "string",
"default": "Node.js",
"description": "Output-Channel Name"
},
"miramac.node.env": {
"type": ["object", "null"],
"default": null,
"description": "Add execution environment variables"
},
"miramac.node.args": {
"type": ["array", "null"],
"default": null,
"description": "Add execution arguments"
},
"miramac.node.options": {
"type": ["array", "null"],
"default": null,
"description": "Add execution options"
},
"miramac.node.legacyMode": {
"type": "boolean",
"default": true,
"description": "If true, the extention will not use new features and options."
}
}
}
},
"scripts": {
"vsce-publish": "vsce publish",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.13"
}
}