-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.78 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.78 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "python",
"version": "0.3.1",
"displayName": "Python for VSCode",
"title": "Python for VSCode",
"description": "Python language extension for vscode",
"authors": [
"Thomas Haakon Townsend"
],
"publisher": "tht13",
"repository": {
"type": "git",
"url": "https://github.com/tht13/Python-vscode.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.7"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node_modules/.bin/installServerIntoExtension ./out ./src/server/package.json ./src/server/tsconfig.json && tsc -p ./",
"build": "tsc -p ./",
"preversion": "npm run compile",
"version": "changes",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@studio/changes": "^1.0.5",
"@types/mocha": "^2.2.35",
"@types/node": "^6.0.54",
"typescript": "2.1.4",
"vscode": "1.0.3"
},
"dependencies": {
"vscode-languageclient": "2.6.3",
"vscode-languageserver": "2.6.2"
},
"activationEvents": [
"onLanguage:python"
],
"main": "out/client/src/pythonMain",
"icon": "images/python_icon.png",
"galleryBanner": {
"color": "#2b5b84",
"theme": "light"
},
"bugs": "https://github.com/tht13/Python-vscode/issues",
"homepage": "https://github.com/tht13/Python-vscode/blob/master/README.md",
"categories": [
"Languages",
"Snippets",
"Linters"
],
"contributes": {
"languages": [
{
"id": "python",
"aliases": [
"Python"
],
"extensions": [
".py",
".rpy",
".pyw",
".cpy",
".SConstruct",
".Sconstruct",
".sconstruct",
".SConscript",
".gyp",
".gypi"
],
"firstLine": "^#!/.*\\bpython[0-9.-]*\\b",
"configuration": "./python.configuration.json"
}
],
"snippets": [
{
"language": "python",
"path": "./snippets/python.json"
}
],
"jsonValidation": [
{
"fileMatch": "pyconfig.json",
"url": "/schemas/pyconfig.schema.json"
}
],
"configuration": {
"type": "object",
"title": "Python configuration",
"properties": {
"python.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"python.linter": {
"type": "string",
"default": "pyLint",
"description": "The linter to use",
"oneOf": [
{
"default": "pyLint"
},
{
"default": "flake8"
}
]
}
}
}
}
}