-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "cpp-getter-setter-generator",
"displayName": "C++ Getter/Setter Generator",
"description": "Create getters and setters for C++ automatically!",
"icon": "images/logo.png",
"publisher": "JuleeSan",
"author": {
"name": "Julee"
},
"version": "0.0.2",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.cppGenerateGetterSetter"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.cppGenerateGetterSetter",
"title": "Cpp Generate Getter Setter"
},
{
"command": "extension.cppGenerateGetter",
"title": "Cpp Generate Getter"
},
{
"command": "extension.cppGenerateSetter",
"title": "Cpp Generate Setter"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"deploy": "vsce package && vsce publish"
},
"devDependencies": {
"typescript": "^3.6.4",
"vscode": "^1.1.36",
"eslint": "^5.13.0",
"@types/node": "^12.11.1",
"@types/mocha": "^5.2.7"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/julee/cpp-getter-setter-generator/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/julee/cpp-getter-setter-generator"
},
"homepage": "https://github.com/julee/cpp-getter-setter-generator",
"dependencies": {
"minimist": "^1.2.6"
}
}