-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.31 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
{
"name": "syncallenvs",
"displayName": "SyncAllEnvs",
"description": "Sync all *.env files with a template template.env",
"version": "0.10.0",
"publisher": "esttenorio",
"repository": {
"type": "git",
"url": "https://github.com/esttenorio/vscode-syncallenvs.git"
},
"engines": {
"vscode": "^1.58.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:syncallenvs.syncAllEnvFiles",
"onCommand:syncallenvs.syncSelectedEnvFile",
"onCommand:syncallenvs.syncEnvFamily",
"onCommand:syncallenvs.generateEnvWithUniqueKeysOnly"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "syncallenvs.syncAllEnvFiles",
"title": "Sync all .env files"
},
{
"command": "syncallenvs.syncSelectedEnvFile",
"title": "Sync selected .env file"
},
{
"command": "syncallenvs.syncEnvFamily",
"title": "Sync family .env files"
},
{
"command": "syncallenvs.generateEnvWithUniqueKeysOnly",
"title": "Generate .env file with unique keys different from template"
}
],
"configuration": [
{
"title": "Sync All Evs",
"properties": {
"syncallenvs.templateFilename": {
"type": "string",
"default": ".env.template",
"description": "Specifies the filename template to be used as base to sync other files"
},
"syncallenvs.targetFilenamePattern": {
"type": "string",
"default": "*.env",
"description": "Specifies filename pattern of the filename to be used to by synced with the template file"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.52",
"@types/vscode": "^1.58.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"glob": "^7.1.7",
"mocha": "^7.1.2",
"typescript": "^3.9.10",
"vscode-test": "^1.6.1"
}
}