forked from 928PJY/docs-yaml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "docs-yaml",
"displayName": "docs-yaml",
"description": "YAML Support for Visual Studio Code, support for hover, auto completion and schema validation according to YamlMime",
"version": "0.1.12",
"preview": true,
"publisher": "Gizmos",
"engines": {
"vscode": "^1.25.0"
},
"license": "MIT",
"categories": [
"Azure",
"Snippets",
"Programming Languages",
"Other"
],
"keywords": [
"yaml",
"YamlMime",
"azure",
"docs"
],
"icon": "images/docs-logo-ms.png",
"bugs": {
"url": "https://github.com/928PJY/docs-yaml/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/928PJY/docs-yaml"
},
"activationEvents": [
"onLanguage:yaml"
],
"main": "./out/src/extension",
"contributes": {},
"extensionDependencies": [
"redhat.vscode-yaml"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"fuzzysearch": "^1.0.3",
"js-yaml": "^3.8.2"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^4.1.0",
"typescript": "^2.2.32",
"vscode": "^1.0.17"
}
}