-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
168 lines (168 loc) · 4.67 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "docker-run",
"displayName": "Docker Run",
"description": "Start your docker containers automatically for each workspace",
"version": "1.1.0",
"icon": "images/icon.png",
"author": {
"name": "Georgekutty Antony",
"email": "mail@georgekuttyantony.com"
},
"publisher": "george3447",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages",
"Linters",
"Azure"
],
"keywords": [
"docker",
"run",
"container",
"auto",
"start"
],
"repository": {
"type": "git",
"url": "https://github.com/george3447/docker-run"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/george3447/docker-run/issues"
},
"activationEvents": [
"onStartupFinished",
"onCommand:docker-run.add",
"onCommand:docker-run.remove",
"onCommand:docker-run.start:all",
"onCommand:docker-run.stop:all",
"onCommand:docker-run.stop:non-related",
"onCommand:docker-run.start",
"onCommand:docker-run.stop"
],
"main": "./dist/extension",
"contributes": {
"configuration": {
"title": "Docker Run",
"properties": {
"DockerRun.DisableAutoGenerateConfig": {
"type": "boolean",
"default": false,
"description": "Disable automatic generation of '.dockerrc' config file"
},
"DockerRun.DisableAutoStopNonRelated": {
"type": "boolean",
"default": false,
"description": "Disable automatic stopping of Non Related Containers"
},
"DockerRun.DisableDockerrc": {
"type": "boolean",
"default": false,
"description": "Disable writing container ids to .dockerrc file"
},
"DockerRun.Containers": {
"type": "array",
"default": [],
"description": "Container ids to start when workspace open"
},
"DockerRun.DisableStatusBarItem": {
"type": "boolean",
"default": false,
"description": "Disable showing container info in status bar"
},
"DockerRun.StatusBarItemRefreshInterval": {
"type": "number",
"default": 2000,
"description": "Container status refresh interval (milliseconds)"
}
}
},
"commands": [
{
"command": "docker-run.add",
"title": "Add Containers",
"category": "Docker Run"
},
{
"command": "docker-run.remove",
"title": "Remove Containers",
"category": "Docker Run"
},
{
"command": "docker-run.start:all",
"title": "Start All Containers",
"category": "Docker Run"
},
{
"command": "docker-run.stop:all",
"title": "Stop All Containers",
"category": "Docker Run"
},
{
"command": "docker-run.stop:non-related",
"title": "Stop Non Related Containers",
"category": "Docker Run"
},
{
"command": "docker-run.start",
"title": "Start Containers",
"category": "Docker Run"
},
{
"command": "docker-run.stop",
"title": "Stop Containers",
"category": "Docker Run"
},
{
"command": "docker-run.show-commands",
"title": "Show Commands",
"category": "Docker Run"
}
]
},
"scripts": {
"deploy": "vsce publish --yarn",
"lint": "eslint src --ext ts",
"pretest": "npm run test-compile && npm run lint && npx npe main ./out/extension",
"test": "node ./out/test/runTest.js",
"test:v1": "WORKSPACE_FOLDER=workspace-v1 npm test",
"posttest": "npx npe main ./dist/extension",
"test-compile": "tsc -p ./",
"vscode:prepublish": "webpack --mode=production",
"webpack": "webpack --mode=development",
"webpack-dev": "webpack --mode=development --watch --info-verbosity=verbose"
},
"devDependencies": {
"@types/chai": "~4.2.12",
"@types/dockerode": "~2.5.29",
"@types/glob": "~7.1.1",
"@types/mocha": "~7.0.2",
"@types/node": "~13.11.0",
"@types/sinon": "~9.0.7",
"@types/vscode": "~1.45.0",
"@typescript-eslint/eslint-plugin": "~2.30.0",
"@typescript-eslint/parser": "~2.30.0",
"chai": "~4.2.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-prettier": "~3.1.4",
"eslint-plugin-simple-import-sort": "~6.0.1",
"glob": "~7.1.6",
"mocha": "~7.1.2",
"npe": "~1.1.3",
"prettier": "~2.2.0",
"sinon": "~9.1.0",
"ts-loader": "~7.0.5",
"typescript": "~3.8.3",
"vsce": "~1.76.1",
"vscode-test": "~1.3.0",
"webpack": "~4.43.0",
"webpack-cli": "~3.3.11"
},
"dependencies": {
"dockerode": "~3.2.0",
"vscode-ext-codicons": "~1.2.0"
}
}