This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
129 lines (129 loc) · 3.48 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "better-toml",
"displayName": "Better TOML",
"description": "Better TOML Language support",
"author": "Gigih Aji Ibrahim <[email protected]>",
"icon": "icon.png",
"version": "0.3.2",
"publisher": "bungcip",
"license": "MIT",
"homepage": "https://github.com/bungcip/better-toml/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bungcip/better-toml.git"
},
"bugs": {
"url": "https://github.com/bungcip/better-toml/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Languages"
],
"keywords": [
"toml"
],
"activationEvents": [
"onLanguage:toml"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "toml",
"aliases": [
"TOML",
"toml"
],
"extensions": [
".toml",
"Pipfile"
],
"mimetypes": [
"text/x-toml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "toml",
"scopeName": "source.toml",
"path": "./syntaxes/TOML.tmLanguage"
},
{
"scopeName": "markdown.toml.frontmatter.codeblock",
"path": "./syntaxes/TOML.frontMatter.tmLanguage",
"injectTo": [
"text.html.markdown"
]
}
],
"configuration": {
"id": "toml",
"order": 30,
"type": "object",
"title": "TOML",
"properties": {
"toml.schemas": {
"type": "array",
"description": "Associate schemas to TOML files in the current project",
"items": {
"type": "object",
"default": {
"fileMatch": [
"{{/myfile}}"
],
"url": "{{schemaURL}}"
},
"properties": {
"url": {
"type": "string",
"default": "/user.schema.json",
"description": "A URL to a schema or a relative path to a schema in the current directory"
},
"fileMatch": {
"type": "array",
"items": {
"type": "string",
"default": "MyFile.toml",
"description": "A file pattern that can contain '*' to match against when resolving TOML files to schemas."
},
"minItems": 1,
"description": "An array of file patterns to match against when resolving TOML files to schemas."
},
"schema": {
"$ref": "http://json-schema.org/draft-04/schema#",
"description": "The schema definition for the given URL. The schema only needs to be provided to avoid accesses to the schema URL."
}
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"@sgarciac/bombadil": "0.0.7",
"node-fetch": "^2.1.2",
"request-light": "^0.2.2",
"vscode-json-languageservice": "^3.1.0",
"vscode-languageclient": "^4.1.3",
"vscode-languageserver": "^4.1.2",
"vscode-nls": "^3.2.2"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.0",
"@types/node-fetch": "^1.6.9",
"mocha": "^5.1.1",
"typescript": "^2.8.3",
"vscode": "^1.1.16"
}
}