forked from Mechanical-Advantage/EventDeployExtension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.24 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
{
"name": "event-deploy",
"displayName": "Event Deploy for WPILib",
"description": "Adds a button to commit all changes when deploying robot code at events.",
"version": "0.0.1",
"author": "FRC 6328",
"publisher": "FRC 6328",
"license": "MIT",
"icon": "icon.png",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:.wpilib/wpilib_preferences.json"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "event-deploy.deploy",
"title": "Deploy Robot Code (Event)",
"category": "WPILib",
"enablement": "isWorkspaceTrusted"
}
],
"menus": {
"commandPalette": [
{
"command": "event-deploy.deploy",
"when": "isWPILibProject"
}
],
"editor/title": [
{
"command": "event-deploy.deploy",
"group": "wpilib@0",
"when": "isWPILibProject"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.51.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
}
}