-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "lualint",
"displayName": "lua lint",
"description": "Static error checker for Lua",
"version": "0.0.5",
"publisher": "satoren",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Linters"
],
"repository": {
"type": "git",
"url": "https://github.com/satoren/lualint_for_vscode.git"
},
"bugs": {
"url": "https://github.com/satoren/lualint_for_vscode/issues"
},
"activationEvents": [
"onLanguage:lua"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "lua-lint configuration",
"properties": {
"lualint.useLuacheck": {
"type": "boolean",
"default": true,
"description": "If true use luacheck. Otherwise syntax error check only."
},
"lualint.maxNumberOfReports": {
"type": "number",
"default": 100,
"description": "Maximum number of code check reports."
}
}
}
},
"scripts": {
"copy:dist": "node ./script/copy_dist.js",
"vscode:prepublish": "tsc -p ./ && node ./script/copy_dist.js",
"compile": "tsc -watch -p ./ ",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"vscode-languageclient": "^2.6.3",
"vscode-languageserver": "^2.6.2",
"vscode-uri":"^1.0.0"
},
"devDependencies": {
"typescript": "^2.1.5",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32",
"fs-extra":"^2.0.0"
},
"icon": "icon.png"
}