-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
{
"license": "MIT",
"name": "environment-injector",
"displayName": "environment-injector",
"description": "Allows injection of env variables into your session, as well as sourcing of .env files.",
"publisher": "GoNZooo",
"repository": {
"type": "git",
"url": "https://github.com/GoNZooo/vscode-environment-injector"
},
"version": "0.2.4",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/*.env",
"onCommand:extension.environment-injector.injectVariable",
"onCommand:extension.environment-injector.readEnvironmentFile",
"onCommand:extension.environment-injector.sourceEnvironmentFile",
"onCommand:extension.environment-injector.getCurrentEnvironment",
"onCommand:extension.environment-injector.outputCurrentEnvironment",
"onCommand:extension.environment-injector.replaceVariable"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.environment-injector.injectVariable",
"title": "Inject environment variable"
},
{
"command": "extension.environment-injector.getCurrentEnvironment",
"title": "Get your current environment"
},
{
"command": "extension.environment-injector.outputCurrentEnvironment",
"title": "Output your current environment in the 'Output' panel"
},
{
"command": "extension.environment-injector.sourceEnvironmentFile",
"title": "Source environment file"
},
{
"command": "extension.environment-injector.readEnvironmentFile",
"title": "Read environment file"
},
{
"command": "extension.environment-injector.replaceVariable",
"title": "Replace a current environment variable"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceExtname == .env",
"command": "extension.environment-injector.sourceEnvironmentFile",
"group": "z_commands"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint -p ."
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.11.7",
"@types/vscode": "^1.43.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.0",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
},
"dependencies": {}
}