This repository has been archived by the owner on Nov 15, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
87 lines (87 loc) · 2.16 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
{
"name": "file-templates",
"displayName": "File Templates",
"description": "This Extension allows to quickly create new files based on defined templates.",
"version": "1.2.0",
"author": "Bruno Paz",
"publisher": "brpaz",
"homepage": "https://github.com/brpaz/vscode-file-templates-ext",
"repository": {
"type": "git",
"url": "https://github.com/brpaz/vscode-file-templates-ext.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.3.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.fileFromTemplate",
"onCommand:extension.templateFromFile"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "VSCode File Templates Configuration",
"properties": {
"fileTemplates.author": {
"type": [
"string",
"null"
],
"default": null,
"description": "Value to use to replace #{author} variable."
},
"fileTemplates.company": {
"type": [
"string",
"null"
],
"default": null,
"description": "Value to use to replace #{company} variable."
}
}
},
"commands": [
{
"command": "extension.fileFromTemplate",
"title": "New File from template",
"category": "Files"
},
{
"command": "extension.templateFromFile",
"title": "New Template from file",
"category": "Files"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.fileFromTemplate"
}
],
"editor/context": [
{
"command": "extension.templateFromFile"
}
]
}
},
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts",
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"tslint": "^3.13.0",
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"dependencies": {
"moment": "^2.18.1"
}
}