-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.5 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
{
"name": "getter-setter-generator",
"displayName": "Getter/Setter Generator",
"description": "Create getters and setters for several languages automatically!",
"icon": "images/logo.png",
"publisher": "Gabsii",
"author": {
"name": "Gabsii"
},
"version": "1.3.0",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateGetterSetter"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.generateGetterSetter",
"title": "Generate Getter Setter"
},
{
"command": "extension.generateGetter",
"title": "Generate Getter"
},
{
"command": "extension.generateSetter",
"title": "Generate Setter"
}
],
"keybindings": [
{
"command": "extension.generateGetterSetter",
"key": "ctrl+alt+d"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"deploy": "vsce package && vsce publish"
},
"devDependencies": {
"typescript": "^3.9.5",
"vscode": "^1.1.37",
"eslint": "^5.13.0",
"@types/node": "^14.0.13",
"@types/mocha": "^7.0.2"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/Gabsii/getter-setter-generator/issues",
"email": "lukas.gabsi@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Gabsii/getter-setter-generator.git"
},
"homepage": "https://github.com/Gabsii/getter-setter-generatorblob/master/README.md"
}