-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
147 lines (147 loc) · 4.71 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "vsc-niagara",
"displayName": "vsc-niagara",
"description": "niagara extention for visual studio",
"version": "0.2.6",
"publisher": "bno",
"repository": {
"type": "git",
"url": "https://github.com/Bno93/vsc-nigara"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Extension Packs",
"Snippets"
],
"activationEvents": [
"workspaceContains:**/module-include.xml",
"workspaceContains:**/module-permissions.xml",
"workspaceContains:**/module-permissions.xml",
"workspaceContains:**/build.xml",
"onCommand:vsc-niagara.build",
"onCommand:vsc-niagara.slotomatic",
"onCommand:vsc-niagara.clean",
"onCommand:vsc-niagara.moduleTestJar"
],
"main": "./out/extension",
"contributes": {
"snippets": [
{
"language": "java",
"path": "./snippets/java.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "xml",
"path": "./snippets/xml.json"
}
],
"commands": [
{
"command": "vsc-niagara.build",
"title": "build niagara project",
"category": "Niagara"
},
{
"command": "vsc-niagara.slotomatic",
"title": "run slotomatic",
"category": "Niagara"
},
{
"command": "vsc-niagara.clean",
"title": "clean project",
"category": "Niagara"
},
{
"command": "vsc-niagara.moduleTestJar",
"title": "build module Test jar",
"category": "Niagara"
}
],
"taskDefinitions": [
{
"type": "build",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "Build Niagara Project"
}
}
}
],
"configuration": {
"type": "object",
"title": "Niagara Settings",
"properties": {
"vsc-niagara.build.nx.gradlew": {
"type": "boolean",
"default": false,
"description": "Use gradlew indstead of gradle itself."
},
"vsc-niagara.build.nx.gradle.arguments": {
"type": "array",
"default": [],
"description": "List of extra arguments passed to the gradle commands."
},
"vsc-niagara.niagara.ax.home": {
"type": "string",
"default": "",
"description": "Niagara AX Home",
"examples": ["C:/Niagara/NiagaraAX-3.8"]
},
"vsc-niagara.niagara.nx.home": {
"type": "string",
"default": "",
"description": "Niagara Home",
"examples": ["C:/Niagara/Niagara-4.10"]
},
"vsc-niagara.niagara.basedir": {
"type": "string",
"default": "C:\\Niagara\\",
"description": "root path of all niagara installations",
"examples": ["C:\\Niagara\\"]
},
"vsc-niagara.environment": {
"type": "string",
"default": "",
"description": "path of the niagara environment to build the project"
},
"vsc-niagara.log.trace": {
"type": "boolean",
"default": "false",
"description": "enable more log output for better debuging"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.13",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/glob": "^7.1.4",
"@types/vscode": "^1.50.0",
"fs": "^0.0.1-security",
"node.extend": "^2.0.2",
"path": "^0.12.7",
"vscode-test": "^1.6.1"
}
}