-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.19 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
{
"name": "dotenv",
"displayName": "DotENV",
"description": "Support for dotenv file syntax",
"version": "1.0.1",
"publisher": "mikestead",
"license": "MIT",
"engines": {
"vscode": "^1.5.1"
},
"categories": [
"Languages"
],
"keywords": [
"env",
"dotenv"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#3E1661",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/mikestead/vscode-dotenv.git"
},
"contributes": {
"languages": [
{
"id": "dotenv",
"aliases": [
"Environment Variables",
"dotenv",
"env"
],
"extensions": [
".flaskenv",
".env",
".env-sample",
".env.example",
".env.local",
".env.dev",
".env.dev.local",
".env.build",
".env.build.local",
".env.development",
".env.development.local",
".env.test",
".env.test.local",
".env.testing",
".env.qa",
".env.qa.local",
".env.uat",
".env.uat.local",
".env.stag",
".env.stag.local",
".env.stage",
".env.stage.local",
".env.staging",
".env.staging.local",
".env.live",
".env.live.local",
".env.production",
".env.production.local",
".env.prod",
".env.prod.local"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dotenv",
"scopeName": "source.env",
"path": "./syntaxes/env.tmLanguage"
}
]
}
}