-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.74 KB
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
{
"name": "tsqllint",
"description": "A VS Code Extension For TSQLLint",
"author": "Nathan Boyd",
"license": "MIT",
"version": "1.3.0",
"publisher": "tsqllint",
"categories": [
"Linters"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "TSQLLint Configuration",
"properties": {
"tsqlLint.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server."
},
"tsqlLint.autoFixOnSave": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Auto fix supported linting errors on save."
}
}
},
"commands": [
{
"command": "tsqlLint.fix",
"title": "TSQL Lint: Fix"
}
],
"keybindings": [
{
"command": "tsqlLint.fix",
"key": "ctrl+alt+f",
"mac": "shift+cmd+f"
}
]
},
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:sql"
],
"repository": {
"type": "git",
"url": "https://github.com/tsqllint/tsqllint-vscode-extension"
},
"engines": {
"vscode": "^1.52.0"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"conventional-changelog": "^2.0.1",
"eslint": "^8.14.0",
"release-it": "^7.4.7",
"standard": "^11.0.1",
"typescript": "^4.6.3",
"vsce": "^1.42.0"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts",
"build-changelog": "conventional-changelog -i CHANGELOG.md -u -s -r 0 && git add CHANGELOG.md",
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile:client": "tsc -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"compile": "npm run compile:client && npm run compile:server",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
}
}