-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.99 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.99 KB
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
{
"name": "license-file-generator",
"displayName": "LICENSE file generator",
"description": "A compliant GitHub repositories license file generator",
"version": "1.0.0",
"author": {
"name": "Emilien Cosson",
"email": "emilien@em-ilien.fr"
},
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"repository": {
"type": "git",
"url": "https://github.com/Em-ilien/LicenseFileGenerator.git"
},
"publisher": "EmilienCosson",
"contributes": {
"commands": [
{
"command": "license-file-generator.apacheLicense",
"title": "Generate a LICENSE file with the Apache License 2.0"
},
{
"command": "license-file-generator.gnuGeneralPublicLicense3",
"title": "Generate a LICENSE file with the GNU General Public License v3.0"
},
{
"command": "license-file-generator.mitLicense",
"title": "Generate a LICENSE file with the MIT License"
},
{
"command": "license-file-generator.bsdSimplifiedLicense",
"title": "Generate a LICENSE file with the BSD 2-Clause \"Simplified\" License"
},
{
"command": "license-file-generator.bsdNewRevisedLicense",
"title": "Generate a LICENSE file with the BSD 3-Clause \"New\" or \"Revised\" License"
},
{
"command": "license-file-generator.boostSoftwareLicense",
"title": "Generate a LICENSE file with the Boost Software License 1.0"
},
{
"command": "license-file-generator.creativeCommonsZero",
"title": "Generate a LICENSE file with the Creative Commons Zero v1.0 Universal"
},
{
"command": "license-file-generator.eclipsePublicLicense",
"title": "Generate a LICENSE file with the Eclipse Public License 2.0"
},
{
"command": "license-file-generator.gnuAfferoGeneralPublicLicense",
"title": "Generate a LICENSE file with the GNU Affero General Public License v3.0"
},
{
"command": "license-file-generator.gnuGeneralPublicLicense2",
"title": "Generate a LICENSE file with the GNU General Public License v2.0"
},
{
"command": "license-file-generator.gnuLesserGeneralPublicLicense",
"title": "Generate a LICENSE file with the GNU Lesser General Public License v2.1"
},
{
"command": "license-file-generator.mozillaPublicLicense",
"title": "Generate a LICENSE file with the Mozilla Public License 2.0"
},
{
"command": "license-file-generator.unlicense",
"title": "Generate a LICENSE file with the Unlicense"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9"
}
}