-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.22 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
{
"name": "yaml",
"displayName": "YAML",
"description": "YAML for Visual Studio Code",
"version": "0.0.10",
"publisher": "adamvoss",
"license": "MIT",
"repository": {
"url": "https://github.com/adamvoss/vscode-yaml.git"
},
"categories": [
"Linters",
"Languages"
],
"keywords": [
"schema",
"validation",
"jsonschema",
"json-schema"
],
"icon": "img/icon.png",
"engines": {
"vscode": "^1.8.0"
},
"activationEvents": [
"onLanguage:yaml"
],
"main": "./client/out/yamlMain",
"scripts": {
"compile": "tsc -p server/ && tsc -p client/",
"prepublish": "npm run update-vscode && cd server && npm install",
"update-vscode": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "npm run compile"
},
"contributes": {
"configuration": {
"title": "YAML",
"properties": {
"yaml.format.enable": {
"type": "boolean",
"default": true,
"description": "%yaml.format.enable.desc%"
}
}
}
},
"dependencies": {
"vscode-languageclient": "~3.3",
"vscode-nls": "^2.0.2"
},
"devDependencies": {
"@types/node": "^6.0.51",
"typescript": "^2.3.4",
"vscode": "^1.1.0"
}
}