-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.99 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.99 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
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
{
"name": "glue42-configuration-validator",
"displayName": "Glue42 Configuration Validator",
"description": "Tool that lints the application configuration files for Glue42 Desktop.",
"license": "./LICENSE",
"version": "0.3.1",
"repository": {
"url": "https://github.com/Tick42/vscode-glue42-app-config-validator"
},
"engines": {
"vscode": "^1.29.0"
},
"publisher": "Tick42",
"author": "Svetozar Mateev",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "glue42-configuration-validator.sayHello",
"title": "Hello, World!"
},
{
"command": "glue42-configuration-validator.GenWinConfig",
"title": "Generate Config: Window"
},
{
"command": "glue42-configuration-validator.GenServiceWinConfig",
"title": "Generate Config: Service Window"
},
{
"command": "glue42-configuration-validator.GenActConfig",
"title": "Generate Config: Activity"
},
{
"command": "glue42-configuration-validator.GenExeConfig",
"title": "Generate Config: Exe"
},
{
"command": "glue42-configuration-validator.GenNodeConfig",
"title": "Generate Config: Node"
},
{
"command": "glue42-configuration-validator.deploy",
"title": "Deploy to Glue42"
}
],
"configuration": {
"type": "object",
"title": "Glue42 Configuration Settings",
"properties": {
"glue42-configuration-validator.overwriteContents": {
"type": "boolean",
"default": false,
"description": "Overwrite existing content when generating a configuration."
},
"glue42-configuration-validator.glueDeploymentPath": {
"type": "string",
"default": "%LOCALAPPDATA%/Tick42/GlueDesktop/config/apps",
"description": "Path to the folder that Glue42 Desktop uses for application configurations."
},
"glue42-configuration-validator.underlineErrors": {
"type": "boolean",
"default": true,
"description": "Choose whether to underline any configuration errors in the editor."
},
"glue42-configuration-validator.validateThemes": {
"type": "boolean",
"default": false,
"description": "If enabled the JSON files which resemble the structure of GlueDesktop themes will be validated"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/json-schema": "^7.0.3",
"@types/json-stable-stringify": "^1.0.32",
"@types/json-to-ast": "^2.1.0",
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.138",
"@types/mocha": "^2.2.42",
"@types/node": "^12.7.3",
"gulp": "^4.0.2",
"tslint": "^5.8.0",
"typescript": "^3.6.2",
"vscode": "^1.1.25"
},
"dependencies": {
"@glue42/schemas": "^3.13.1",
"ajv": "^6.12.2",
"ajv-keywords": "^3.4.1",
"fs-assistant": "^0.1.2",
"json-fixer": "^1.4.0",
"json-schema-ref-parser": "^7.1.1",
"json-to-ast": "^2.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.15"
}
}