-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 934 Bytes
/
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
{
"name": "vscode-yaml-languageservice",
"version": "0.2.0",
"description": "Language service for YAML",
"main": "./lib/yamlLanguageService.js",
"typings": "./lib/yamlLanguageService",
"author": "Adam Voss",
"license": "MIT",
"repository": {
"url": "https://github.com/adamvoss/vscode-yaml-languageservice.git"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "tsc -p ./src",
"watch": "tsc -w -p ./src",
"test": "npm run compile && mocha",
"install-types-next": "npm install vscode-languageserver-types@next -f -S"
},
"dependencies": {
"js-yaml": "^3.8.4",
"jsonc-parser": "^1.0.0",
"vscode-json-languageservice": "^2.0.14",
"vscode-nls": "^2.0.2",
"yaml-ast-parser": "0.0.34"
},
"devDependencies": {
"@types/js-yaml": "^3.5.31",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.25",
"mocha": "^3.4.2",
"typescript": "^2.4.2"
}
}