-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "aurelia-lint-vscode",
"displayName": "Aurelia Lint",
"version": "1.1.3",
"description": "Aurelia lint extension for vscode",
"publisher": "NetatWorkGmbH",
"private": true,
"engines": {
"vscode": "^1.63.1"
},
"categories": [
"Linters"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": [
{
"title": "Aurelia Lint",
"properties": {
"nawAureliaLint.onlyCurrentFiles": {
"type": "boolean",
"default": false,
"description": "Only lint files that are currently open"
},
"nawAureliaLint.ignorePaths": {
"type": "string",
"default": "**/node_modules",
"description": "Paths to ignore when looking for aurelia lint projects separated by \"|\""
},
"nawAureliaLint.packageName": {
"type": "string",
"default": "@netatwork/aurelia-lint",
"description": "The package to load the language server from or an absolute path"
}
}
}
]
},
"main": "./out/index.js",
"scripts": {
"clean": "rimraf ./out/**/*",
"build": "tsc",
"watch": "tsc -w",
"vscode:prepublish": "npm run build",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/p-limit": "^2.2.0",
"@types/semver": "^7.3.13",
"@types/vscode": "^1.63.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"vsce": "^2.15.0"
},
"dependencies": {
"p-limit": "^3.1.0",
"semver": "^7.3.8",
"vscode-languageclient": "^7.0.0"
},
"overrides": {
"xml2js": "0.5.0"
},
"repository": "https://github.com/Netatwork-de/aurelia-lint-vscode.git",
"author": "Net at Work GmbH",
"license": "Apache-2.0"
}