-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.05 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
{
"name": "lua-tools",
"displayName": "Lua Tools",
"publisher": "Denk",
"description": "Show luacheck reports, coverage by luacov.stats.out, check stylua formatting",
"version": "0.2.1",
"icon": "icon.png",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Linters",
"Visualization",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/d-enk/vscode-lua-tools.git"
},
"activationEvents": [
"onLanguage:lua",
"workspaceContains:*.lua",
"workspaceContains:*/*.lua",
"workspaceContains:*/*/*.lua"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Lua Tools",
"properties": {
"lua-tools.fullScanOnInit": {
"type": "boolean",
"default": true,
"description": "If true, check all lua files on init"
},
"lua-tools.checkStyluaFormatting": {
"type": "boolean",
"default": false,
"description": "If true, checks that the file is formatted by stylua"
},
"lua-tools.useLuacheck": {
"type": "boolean",
"default": true,
"description": "If true, shows parsed luacheck response"
},
"lua-tools.filesWithCoverage": {
"type": "string",
"default": "luacov.stats.out",
"description": "Comma separated paths to files with coverage created by luatest --coverage"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint"
},
"main": "./src/extension",
"dependencies": {
"vscode-languageclient": "^2.6.3",
"vscode-languageserver": "^2.6.2",
"vscode-uri": "^1.0.0"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"fs-extra": "^2.0.0",
"mocha": "^10.0.0",
"typescript": "^2.1.5",
"vscode": "^0.9.9"
},
"__metadata": {
"id": "e3061871-45a8-494d-9652-b8c4613a8819",
"publisherDisplayName": "Denk",
"publisherId": "940b129a-d3df-4e0e-ac25-d77abf1da20d",
"isPreReleaseVersion": false
}
}