-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
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
{
"name": "pyfilesgen",
"displayName": "Py Files Generator",
"description": "Generate python files and module subtree",
"version": "1.0.2",
"publisher": "ffaraone",
"engines": {
"vscode": "^1.23.0"
},
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/pyfilesgen_icon.png",
"galleryBanner": {
"color": "#1289B9",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"python",
"django",
"init",
"module",
"generator"
],
"repository": {
"url": "https://github.com/ffaraone/vscode-pyfilesgen.git"
},
"homepage": "https://github.com/ffaraone/vscode-pyfilesgen/blob/master/README.md",
"activationEvents": [
"onCommand:extension.generatePyFiles"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"type": "object",
"title": "Py Files Generator Configuration",
"properties": {
"pyfilesgen.generators": {
"type": [
"array",
"null"
],
"default": null,
"description": "List of generators and files to generate"
}
}
}
],
"commands": [
{
"command": "extension.generatePyFiles",
"title": "Py Files Generator",
"category": "Python"
}
],
"menus": {
"commandPalette": [
{
"command": "extension.generatePyFiles",
"when": "1 == 2"
}
],
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.generatePyFiles",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}