-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.29 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": "iar",
"displayName": "IAR Embedded Workbench",
"icon": "icon.png",
"description": "Provide Intellisense and Build support for IAR Embedded Workbench IDE",
"version": "1.6.0",
"publisher": "politoleo",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:iar.build"
],
"repository": {
"type": "git",
"url": "https://github.com/politoleo/iar.git"
},
"main": "./src/main",
"contributes": {
"commands": [
{
"command": "iar.build",
"title": "IAR: Build Project"
}
],
"keybindings": [
{
"command": "iar.build",
"key": "ctrl+shift+B",
"when": "!inDebugMode && config.iar.enabled"
}
],
"configuration": {
"type": "object",
"title": "IAR Configuration",
"properties": {
"iar.enabled": {
"type": "boolean",
"default": false,
"description": "Enable IAR extension."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"__metadata": {
"id": "8e4967c3-c5a3-4f54-adf9-83f7daaff7db",
"publisherDisplayName": "Leonardo Polito",
"publisherId": "ae8a33b2-c6ae-4f52-9d5e-110b0065517e"
}
}