This repository has been archived by the owner on Dec 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
121 lines (121 loc) · 3.69 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
{
"activationEvents": [
"onLanguage:jsonnet",
"onCommand:jsonnet.previewToSide",
"onCommand:jsonnet.preview"
],
"categories": [
"Languages"
],
"contributes": {
"commands": [
{
"command": "jsonnet.previewToSide",
"title": "Jsonnet: Open Preview to the Side"
},
{
"command": "jsonnet.preview",
"title": "Jsonnet: Open Preview"
}
],
"configuration": {
"properties": {
"jsonnet.executablePath": {
"default": null,
"description": "Location of the `jsonnet` executable.",
"type": "string"
},
"jsonnet.extStrs": {
"default": null,
"description": "External strings to pass to `jsonnet` executable.",
"type": "object"
},
"jsonnet.libPaths": {
"default": [],
"description": "Additional paths to search for libraries when compiling Jsonnet code.",
"type": "array"
},
"jsonnet.outputFormat": {
"default": "yaml",
"description": "Preview output format (yaml / json)",
"enum": [
"json",
"yaml"
]
}
},
"title": "Jsonnet configuration",
"type": "object"
},
"grammars": [
{
"language": "jsonnet",
"path": "./syntaxes/jsonnet.tmLanguage.json",
"scopeName": "source.jsonnet"
}
],
"keybindings": [
{
"command": "jsonnet.previewToSide",
"key": "shift+ctrl+i",
"mac": "shift+cmd+i",
"when": "editorFocus"
}
],
"languages": [
{
"aliases": [
"Jsonnet",
"jsonnet"
],
"configuration": "./language-configuration.json",
"extensions": [
".jsonnet",
".libsonnet"
],
"id": "jsonnet"
}
]
},
"dependencies": {
"filepath": "^1.1.0",
"immutable": "^3.8.1",
"js-yaml": "^3.0.0",
"tmp": "0.0.33",
"vscode-languageclient": "^3.1.0",
"vscode-languageserver": "^3.1.0"
},
"description": "Language support for Jsonnet",
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/mocha": "^2.2.42",
"@types/node": "^6.0.40",
"browserify": "^14.3.0",
"chai": "^3.5.0",
"mocha": "^5.0.1",
"typescript": "^2.3.2",
"vscode": "^1.0.0"
},
"displayName": "Jsonnet",
"engines": {
"vscode": "^1.18.x"
},
"homepage": "https://github.com/heptio/vscode-jsonnet/blob/master/README.md",
"license": "SEE LICENSE IN 'LICENSE' file",
"main": "./out/client/extension",
"name": "jsonnet",
"publisher": "heptio",
"repository": {
"type": "git",
"url": "https://github.com/heptio/vscode-jsonnet.git"
},
"scripts": {
"compile": "tsc -watch -p ./",
"compile-once": "tsc -p ./",
"compile-site": "browserify ./out/site/main.js > ksonnet.js",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"vscode:prepublish": "tsc -p ./"
},
"version": "0.1.0"
}