-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.67 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
{
"name": "python-manifest-template",
"displayName": "Python MANIFEST.in",
"description": "Grammar, snippets for Python MANIFEST.in template files",
"license": "BSD-3-Clause",
"version": "1.0.1",
"icon": "assets/icon.png",
"publisher": "benspaulding",
"author": {
"name": "Ben Spaulding",
"email": "[email protected]",
"url": "https://www.benspaulding.com"
},
"homepage": "https://github.com/benspaulding/vscode-python-manifest-template",
"repository": {
"type": "git",
"url": "https://github.com/benspaulding/vscode-python-manifest-template.git"
},
"bugs": {
"url": "https://github.com/benspaulding/vscode-python-manifest-template/issues"
},
"engines": {
"vscode": "^1.29.0"
},
"keywords": [
"manifest",
"python"
],
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"recommendations": [
"microsoft.python"
],
"contributes": {
"languages": [
{
"id": "python-manifest-template",
"aliases": [
"Python MANIFEST template",
"python-manifest-template"
],
"filenames": [
"MANIFEST.in"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "python-manifest-template",
"scopeName": "source.python-manifest-template",
"path": "./syntaxes/python-manifest-template.tmLanguage.json"
}
],
"snippets": [
{
"language": "python-manifest-template",
"path": "./snippets/python-manifest-template.tmSnippets.json"
}
]
},
"__metadata": {
"id": "776118a1-40d7-4c60-928b-81080a078b28",
"publisherDisplayName": "Ben Spaulding",
"publisherId": "27f62f83-b01c-4b89-b543-4dbb2d4155e8"
},
"prettier": {
"printWidth": 88,
"useTabs": true
}
}