-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
165 lines (165 loc) · 3.86 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "IntelliLua",
"description": "Lua Intellisense Support For Vscode.",
"author": "liwangqian87@163.com",
"license": "MIT",
"version": "1.1.0",
"publisher": "liwangqian",
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Languages"
],
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/liwangqian/IntelliLua"
},
"bugs": {
"url": "https://github.com/liwangqian/IntelliLua/issues"
},
"activationEvents": [
"onLanguage:lua"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"contributes": {
"commands":[
{
"command": "intelliLua.bustedInit",
"title": "Busted: Init busted"
},
{
"command": "intelliLua.bustedRun",
"title": "Busted: Run tests"
},
{
"command": "intelliLua.bustedStop",
"title": "Busted: Stop run"
},
{
"command": "intelliLua.bustedNewTest",
"title": "Busted: New test"
},
{
"command": "intelliLua.bustedShowReport",
"title": "Busted: Show report"
},
{
"command": "intelliLua.bustedSaveReport",
"title": "Busted: Save report"
}
],
"menus": {
"editor/context": [
{
"command": "intelliLua.bustedInit"
},
{
"command": "intelliLua.bustedRun"
},
{
"command": "intelliLua.bustedStop"
},
{
"command": "intelliLua.bustedNewTest"
},
{
"command": "intelliLua.bustedShowReport"
},
{
"command": "intelliLua.bustedSaveReport"
}
]
},
"configuration": {
"type": "object",
"title": "IntelliLua configuration",
"properties": {
"intelliLua.searchOptions.filters": {
"type":"array",
"default":[],
"description": "directory contains these names is not search."
},
"intelliLua.searchOptions.externalPaths": {
"type":"array",
"default":[],
"description": "external path to be search."
},
"intelliLua.searchOptions.followLinks": {
"type":"boolean",
"default":false,
"description": "whether search the links."
},
"intelliLua.documentSymbols.showGlobalsOnly": {
"type":"boolean",
"default": true,
"description": "only the global defined symbols to be show."
},
"intelliLua.parseOptions.luaversion": {
"type":"number",
"default":5.1,
"description": "the lua version number."
},
"intelliLua.debug.enable": {
"type": "boolean",
"default": false,
"description": "enable debug output."
},
"intelliLua.luacheck.enable": {
"type": "boolean",
"default": true,
"description": "Enable luacheck."
},
"intelliLua.luacheck.luacheckPath": {
"type": "string",
"default": "luacheck.exe",
"description": "path of the luacheck excutable (https://github.com/mpeterv/luacheck)."
},
"intelliLua.luacheck.jobs": {
"type":"integer",
"default": 1,
"description": "number of jobs for parallel check, this dependence on luaLanes."
},
"intelliLua.luacheck.configFilePath": {
"type":"string",
"default": ".",
"description": "the configuration (.luacheckrc) file for luacheck."
},
"intelliLua.tdd.enable": {
"type":"boolean",
"default": false,
"description": "enable lua test driven development mode."
}
}
},
"snippets": [
{
"language": "lua",
"path": "./snippets/busted.json"
}
]
},
"devDependencies": {
"typescript": "^2.1.4",
"vscode": "^1.0.3",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"vscode-languageclient": "^2.6.0",
"vscode-jsonrpc": "^3.2.0",
"vscode-languageserver-types": "^3.2.0"
},
"__metadata": {
"id": "8466515a-a036-406e-b1e5-a04c7c81453c",
"publisherId": "3a9ea834-08ae-40c0-851d-fafcef353e86",
"publisherDisplayName": "liwangqian"
}
}