-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 2.56 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
{
"name": "fboost-extension",
"displayName": "FBoost extension",
"description": "FBoost Visucal Code Extension 是针对 Visual Code 设计的 FISCO BCOS 扩展插件。",
"version": "0.0.1",
"publisher": "leec",
"repository": "https://github.com/includeleec/fboost-vscode-extension",
"icon": "resources/icon.jpg",
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld",
"onCommand:fboost.initialEnv",
"onCommand:fboost.installDependency",
"onCommand:fboost.setNodeBase",
"onCommand:fboost.buildChain",
"onCommand:fboost.startNodes",
"onCommand:fboost.checkProcess",
"onCommand:fboost.installConsole",
"onCommand:fboost.copyConsoleConfig",
"onCommand:fboost.copyConsoleCert",
"onCommand:fboost.startConsole",
"onCommand:fboost.scaffold.spring-boot"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
},
{
"command": "fboost.initialEnv",
"title": "FBoost:[Deploy] (1).Initial envirement"
},
{
"command": "fboost.installDependency",
"title": "FBoost:[Deploy] (2).Install dependency"
},
{
"command": "fboost.setNodeBase",
"title": "FBoost:[Deploy] (3).Set node base"
},
{
"command": "fboost.buildChain",
"title": "FBoost:[Deploy] (4).Build chain"
},
{
"command": "fboost.startNodes",
"title": "FBoost:[Deploy] (5).Start nodes"
},
{
"command": "fboost.checkProcess",
"title": "FBoost:[Check] nodes process"
},
{
"command": "fboost.checkLog",
"title": "FBoost:[Check] logs"
},
{
"command": "fboost.checkConsensus",
"title": "FBoost:[Check] nodes consensus status"
},
{
"command": "fboost.installConsole",
"title": "FBoost:[Console] (1).Install console"
},
{
"command": "fboost.copyConsoleConfig",
"title": "FBoost:[Console] (2).Copy console config"
},
{
"command": "fboost.copyConsoleCert",
"title": "FBoost:[Console] (3).Copy console certificate"
},
{
"command": "fboost.startConsole",
"title": "FBoost:[Console] Start console"
},
{
"command": "fboost.scaffold.spring-boot",
"title": "FBoost:[Scaffold] Spring Boot Starter"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"eslint": "^5.13.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"vscode-test": "^1.0.0-next.0"
}
}