forked from ymotongpoo/vsc-licenser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.22 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
{
"name": "licenser",
"displayName": "licenser",
"description": "inserts license header in source files and creates license file.",
"icon": "image/logo.png",
"version": "0.4.0",
"publisher": "ymotongpoo",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/ymotongpoo/vsc-licenser/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ymotongpoo/vsc-licenser"
},
"bugs": {
"url": "https://github.com/ymotongpoo/vsc-licenser/issues"
},
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Other",
"Linters",
"Snippets"
],
"keywords": [
"License",
"Snippets",
"Template"
],
"activationEvents": [
"onCommand:extension.insertLicenseHeader",
"onCommand:extension.createLicenseFile"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Licenser configurations",
"properties": {
"licenser.license": {
"type": "string",
"default": "AL2",
"enum": [
"AGPLv3",
"AL2",
"BSD2",
"BSD3",
"GPLv2",
"GPLv3",
"LGPLv3",
"MIT",
"MPLv2"
],
"description": "License setting for workspace. Available licenses are 'AGPLv3', 'AL2', 'BSD2', 'BSD3', 'GPLv2', 'GPLv3', 'LGPLv3', 'MIT', 'MPLv2'"
},
"licenser.author": {
"type": "string",
"default": "",
"description": "Author name of the project."
},
"licenser.projectName": {
"type": "string",
"default": "",
"description": "Project name of the workspace belong to. This is used for GPL license template. This property should be in 'Workspace Settings'."
},
"licenser.useSingleLineStyle": {
"type": "boolean",
"default": true,
"description": "Priority to use single line comment style to multiple line comment style for license header."
}
}
},
"commands": [{
"command": "extension.insertLicenseHeader",
"title": "licenser: Insert license header"
},
{
"command": "extension.createLicenseFile",
"title": "licenser: Create LICENSE file"
}
],
"keybindings": [{
"command": "extension.createLicenseFile",
"key": "shift+cmd+ctrl+l",
"when": "editorTextFocus"
}]
},
"scripts": {
"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": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}